forked from cerc-io/assemblyscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstructor-errors.json
More file actions
23 lines (23 loc) · 898 Bytes
/
constructor-errors.json
File metadata and controls
23 lines (23 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"asc_flags": [
],
"stderr": [
"TS2333: 'this' cannot be referenced in constructor arguments.",
"b: i32 = this.a, // TS2333",
"TS2333: 'this' cannot be referenced in constructor arguments.",
"c: i32 = this.foo() // TS2333",
"TS2333: 'this' cannot be referenced in constructor arguments.",
"e: i32 = this.d, // TS2333",
"TS2333: 'this' cannot be referenced in constructor arguments.",
"f: i32 = this.bar() // TS2333",
"TS2336: 'super' cannot be referenced in constructor arguments.",
"h: i32 = super.g, // TS2336",
"TS2336: 'super' cannot be referenced in constructor arguments.",
"i: i32 = super.baz() // TS2336",
"TS2336: 'super' cannot be referenced in constructor arguments.",
"j: i32 = super.g, // TS2336",
"TS2336: 'super' cannot be referenced in constructor arguments.",
"k: i32 = super.baz() // TS2336",
"EOF"
]
}