ember-script icon indicating copy to clipboard operation
ember-script copied to clipboard

Ember-infused CoffeeScript

Results 28 ember-script issues
Sort by recently updated
recently updated
newest added

Quick question - is this project still alive? We wrote some stuff in Emberscript and it would be sad if we have to throw it away again.

this can also bee seen on the website. When *. is used, it should be set directly like `person.firstname = "Manuel"` I think this worked in earlier versions

``` class Test @test = 1 ``` causes a compiler error ``` Syntax error on line 2, column 2: unexpected '@' (\u0040) 1 : class Test 2 : @test =...

Just to notify others: a new Ember-cli project will use ember 1.10, and then ember build (or server) will fail with: Cannot read property 'create' of undefined TypeError: Cannot read...

Cannot explain better than an example: ``` coffee class Person postsDisplay: ~> @user.method @name ``` will give you: ``` javascript Person = Ember.Object.extend({ postsDisplay: Ember.computed(function () { return get$(this, 'user').method(get$(this,...

On the site an example with normal java property access is given. ``` coffeescript person.firstName = "Andrew" person*.firstName = "Manuel" ``` is translated to: ``` javascript // Generated by EmberScript...

If I try to use ember script with EmberCLI (which uses ES6 style import modules) it doesn't work anymore (e.g. with EmberCLI 0.37). This problem is always reproducible when using...

In coffescript you can call `super` without any arguments and it'll be equivalent to passing all arguments to it. ``` coffee class MyClass myMethod: -> super ``` translates into this:...

Some major refactoring/cleanup of cli. Tested and works: ``` bash $ make build -j $ bin/ember-script -j --input sandbox/test-fragmented.em $ bin/ember-script -j --input sandbox/test-exfragmented.em ``` Also added Changelog and Contributing...