bayrell / BayLang

BayLang compiler source code
https://bayrell.org/ru/docs/baylang
Apache License 2.0
4 stars 0 forks source link

add window, document system object to es6 #59

Closed ildar-ceo closed 3 years ago

ildar-ceo commented 3 years ago
/**
 * Repaint layout
 */
public void repaint()
{
  if (this.animation_id == null)
  {
    this.animation_id = window.requestAnimationFrame( method this.render );
  }
}
ildar-ceo commented 3 years ago
Dict obj = to_obj
{
  "test": "a",
  "test2": "b",
  "arr": [1,2,3,4,5]
}