Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As we all know, this is a priority.
We want to be able to write code so that the auto-generated classes look as follows:
var br = require( 'br' ); var Property = require( 'br/presenter/Property'); var PresentationModel = require( 'br/presenter/PresentationModel' ); function ExampleClass() { this.message = new Property( "Hello World!" ); }; br.extend(ExampleClass, PresentationModel); ExampleClass.prototype.buttonClicked = function() { console.log( 'button clicked' ); };
Relies on #227 and #230.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As we all know, this is a priority.
We want to be able to write code so that the auto-generated classes look as follows:
Relies on #227 and #230.
The text was updated successfully, but these errors were encountered: