OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Flags: --harmony-types |
| 6 |
| 7 |
| 8 load("test/mjsunit/harmony/typesystem/testgen.js"); |
| 9 |
| 10 |
| 11 (function TestClassDeclarations() { |
| 12 // Implements clause. |
| 13 CheckValid("class C implements I {}"); |
| 14 CheckValid("class C implements I, J {}"); |
| 15 CheckValid("class C implements I<number>, J {}"); |
| 16 CheckValid("class C implements I, J<I, number> {}"); |
| 17 // Extends and implements clause. |
| 18 CheckValid("class B {}; class C extends B implements I {}"); |
| 19 CheckValid("class B {}; class C extends B implements I, J {}"); |
| 20 CheckValid("class B {}; class C extends B implements I<number>, J {}"); |
| 21 CheckValid("class B {}; class C extends B implements I, J<I, number> {}"); |
| 22 // Type parametric |
| 23 CheckValid("class C<A, B> {}"); |
| 24 CheckValid("class D {}; class C<A, B> extends D {}"); |
| 25 CheckValid("class D {}; class C<A, B> extends D implements A, I {}"); |
| 26 CheckValid("class C<A, B> implements I<A, B> {}"); |
| 27 // Invalid implements clause. |
| 28 CheckInvalid("class C implements () {}"); |
| 29 CheckInvalid("class C implements number[] {}"); |
| 30 CheckInvalid("class C implements I<> {}"); |
| 31 // Invalid extends clause. |
| 32 CheckInvalid("class B1 {}; class B2 {}; class C extends B1, B2 {}"); |
| 33 // Invalid type parametric |
| 34 CheckInvalid("class C<> {}"); |
| 35 })(); |
| 36 |
| 37 (function TestClassMembers() { |
| 38 // Test all possible valid members. |
| 39 CheckValid("class C {" + "\n" + |
| 40 // constructor |
| 41 " constructor (x: number, y: boolean) { this.x = x; this.y = y; }" + "\n" + |
| 42 // variable members |
| 43 " x" + "\n" + |
| 44 " y: boolean" + "\n" + |
| 45 " z = 42" + "\n" + |
| 46 " w: number = 17" + "\n" + |
| 47 " 'one': number" + "\n" + |
| 48 " '2': boolean" + "\n" + |
| 49 " 3: string" + "\n" + |
| 50 " 'four': number = 4" + "\n" + |
| 51 " '5': boolean = false" + "\n" + |
| 52 " 6: string[] = [...['six', 'six', 'and', 'six']]" + "\n" + |
| 53 // methods |
| 54 " f () : number { return 42; }" + "\n" + |
| 55 " f (a: number[]) : number { return a[0]; }" + "\n" + |
| 56 " f (a: number[], b: number) : number { return b || a[0]; }" + "\n" + |
| 57 // getters |
| 58 " get p () : number { return 42; }" + "\n" + |
| 59 " get 'q' () : number { return 42; }" + "\n" + |
| 60 " get 42 () : number { return 42; }" + "\n" + |
| 61 // setters |
| 62 " set p (x: number) {}" + "\n" + |
| 63 " set 'q' (x: number) {}" + "\n" + |
| 64 " set 42 (x : number) {}" + "\n" + |
| 65 // index members |
| 66 " [x: string]" + "\n" + |
| 67 " [x: string] : number" + "\n" + |
| 68 " [x: number]" + "\n" + |
| 69 " [x: number] : boolean" + "\n" + |
| 70 "}"); |
| 71 // Test all possible valid static members. |
| 72 CheckValid("class C {" + "\n" + |
| 73 // variable members |
| 74 " static x" + "\n" + |
| 75 " static y: boolean" + "\n" + |
| 76 " static z = 42" + "\n" + |
| 77 " static w: number = 17" + "\n" + |
| 78 " static 'one': number" + "\n" + |
| 79 " static '2': boolean" + "\n" + |
| 80 " static 3: string" + "\n" + |
| 81 " static 'four': number = 4" + "\n" + |
| 82 " static '5': boolean = false" + "\n" + |
| 83 " static 6: string[] = [...['six', 'six', 'and', 'six']]" + "\n" + |
| 84 // methods |
| 85 " static f () : number { return 42; }" + "\n" + |
| 86 " static f (a: number[]) : number { return a[0]; }" + "\n" + |
| 87 " static f (a: number[], b: number) : number { return b || a[0]; }" + "\n" + |
| 88 // getters |
| 89 " static get p () : number { return 42; }" + "\n" + |
| 90 " static get 'q' () : number { return 42; }" + "\n" + |
| 91 " static get 42 () : number { return 42; }" + "\n" + |
| 92 // setters |
| 93 " static set p (x: number) {}" + "\n" + |
| 94 " static set 'q' (x: number) {}" + "\n" + |
| 95 " static set 42 (x : number) {}" + "\n" + |
| 96 "}"); |
| 97 // Test invalid member variable declarations. |
| 98 CheckInvalid("class C { x: () }"); |
| 99 CheckInvalid("class C { [42] }"); |
| 100 CheckInvalid("class C { [42]: number }"); |
| 101 // Test invalid index members. |
| 102 CheckInvalid("class C { [x: any] }"); |
| 103 CheckInvalid("class C { [x: any] : any }"); |
| 104 CheckInvalid("class C { static [x: number] }"); |
| 105 })(); |
OLD | NEW |