Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

No support for field annotations #7

Open
RReverser opened this issue Nov 6, 2014 · 7 comments
Open

No support for field annotations #7

RReverser opened this issue Nov 6, 2014 · 7 comments

Comments

@RReverser
Copy link

Tried very simple example:

class Point {
  x:int;
  y:int;
}

And it doesn't seem to work. Throws:

Error:
main.ats:2:4: Unexpected token :
main.ats:2:8: Unexpected token ;
main.ats:3:3: Unexpected token y
main.ats:3:4: Unexpected token :
main.ats:3:5: Semi-colon expected
main.ats:4:2: Unexpected token End of File
@smaye81
Copy link

smaye81 commented Nov 6, 2014

Seeing the same. In fact, anything with int is failing for me. Using number though with parameter annotations works, but not for field annotations. For example, this works fine:

class MyClass {
    constructor(xArg:number, yArg:number) {
        this.x = xArg;
        this.y = yArg;
    }
}
var myClass = new MyClass(1, 2);
console.log(myClass);

var myClass2 = new MyClass("test", "test");  // this will fail in the console (as expected)

But this doesn't:

class MyClass {
    x:number;
    y:number;
}

@mlb6
Copy link

mlb6 commented Nov 18, 2014

I solved the problem on my side by adding this to the config.json : "memberVariables":true
I guessed it by looking at this line of the traceur code: https://github.com/google/traceur-compiler/blob/master/src/Options.js#L143

@smaye81
Copy link

smaye81 commented Nov 18, 2014

Interesting. I can get it to compile by doing that also. I can also define a class like above with:

export class Point {
    x:int;
}

But if I try to instantiate it like so:

var point = new Point(5);
console.log(point);

I see this in my console:

Point {x: (...)}
x: [Exception: ReferenceError: int is not defined]
__proto__: Point

And this is my config:

{
  "traceur": {
    "modules": "register",
    "moduleName" : true,
    "script": false,
    "types": true,
    "typeAssertions": true,
    "typeAssertionModule": "assert",
    "annotations": true,
    "sourceMaps": false,
    "memberVariables" : true,
    "experimental" : true
  }
}

@mlb6
Copy link

mlb6 commented Nov 20, 2014

You get this error because you forgot to write a constructor :

export class Point {
  x:int;
  constructor(x:int){
    this.x = x;
  }
}

@smaye81
Copy link

smaye81 commented Nov 20, 2014

Shouldn't the transpiler auto-generate the constructor for me? Take a look at the AtScript primer by @mhevery

https://docs.google.com/document/d/11YUzC-1d0V1-Q3V0fQ7KSit97HnZoKVygDxpWzEYW0U/mobilebasic?viewopt=127

Look at the Field Annotations section, specifically this line:

By specifying the fields in this way, the transpiler can generate the constructor which then pre-creates the fields.

mlb6 added a commit to mlb6/atscript-playground that referenced this issue Nov 20, 2014
Add a missing option to the traceur compiler in order to play with all atScript functionalities.
@mlb6
Copy link

mlb6 commented Nov 20, 2014

It specifies that the transpiler can generate the constructor. But it does not say if the constructor will assign values. In the example provided by @mhevery field variables are assigned to null.

class MyClass {
  constructor() {
    this.x = null; // auto-generated
    this.y = null; // auto-generated
  }
}

But when I transpile the code into es6 using traceur, there is no constructor :

class Point {
  get x() {
    return this.$__0;
  }
  set x(value) {
    this.$__0 = value;
  }
  get y() {
    return this.$__1;
  }
  set y(value) {
    this.$__1 = value;
  }
}
Object.defineProperty(Object.getOwnPropertyDescriptor(Point.prototype, "x").set, "parameters", {get: function() {
    return [[int]];
  }});
Object.defineProperty(Object.getOwnPropertyDescriptor(Point.prototype, "y").set, "parameters", {get: function() {
    return [[int]];
  }});

So, I agree with you on the fact it does not generate constructor, but anyway according to this document atScript will not auto-assign your fields. So, you'll have to write a constructor.

@mhevery
Copy link

mhevery commented Nov 20, 2014

work in progress.

On Thu Nov 20 2014 at 1:39:03 PM Martin Le Bas [email protected]
wrote:

It specifies that the transpiler can generate the constructor. But it
does not say if the constructor will assign values. In the example provided
by @mhevery https://github.com/mhevery field variables are assigned to
null.

class MyClass {
constructor() {
this.x = null; // auto-generated
this.y = null; // auto-generated
}
}

But when I transpile the code into es6 using traceur, there is no
constructor :

class Point {
get x() {
return this.$__0;
}
set x(value) {
this.$__0 = value;
}
get y() {
return this.$__1;
}
set y(value) {
this.$__1 = value;
}
}Object.defineProperty(Object.getOwnPropertyDescriptor(Point.prototype, "x").set, "parameters", {get: function() {
return [[int]];
}});Object.defineProperty(Object.getOwnPropertyDescriptor(Point.prototype, "y").set, "parameters", {get: function() {
return [[int]];
}});

So, I agree with you on the fact it does not generate constructor, but
anyway according to this document atScript will not auto-assign your
fields. So, you'll have to write a constructor.


Reply to this email directly or view it on GitHub
#7 (comment)
.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants