You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

  1. for all classes that are native to both AS and JS (like Error, Date etc.), check if the properties and methods on both sides match up
  2. add support for multiple arguments in the 'trace' utility function
  3. figure out getters/setters in classical (prototypal) JS OOP
  4. default values for function parameters: annotation '@param{myType=}' (the '= makes it optional) and a line in the function block: a = typeof a !== 'undefined' ? a : 42;
  5. ...
  6. profit!!!
  • No labels