| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 // Check that we can use pseudo keywords as names in function level code. | 4 // Check that we can use pseudo keywords as names in function level code. |
| 5 | 5 |
| 6 | 6 |
| 7 class PseudoKWTest { | 7 class PseudoKWTest { |
| 8 static testMain() { | 8 static testMain() { |
| 9 | 9 |
| 10 // This is a list of built-in identifiers from the Dart spec. | 10 // This is a list of built-in identifiers from the Dart spec. |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 } | 50 } |
| 51 | 51 |
| 52 typedef(x) => "typedef " + x; | 52 typedef(x) => "typedef " + x; |
| 53 | 53 |
| 54 static(abstract) { | 54 static(abstract) { |
| 55 return abstract == true; | 55 return abstract == true; |
| 56 } | 56 } |
| 57 | 57 |
| 58 class A { | 58 class A { |
| 59 var typedef = 0; | 59 var typedef = 0; |
| 60 final operator = "smooth"; |
| 61 |
| 60 set(x) { typedef = x; } | 62 set(x) { typedef = x; } |
| 61 get() => typedef - 5; | 63 get() => typedef - 5; |
| 62 | 64 |
| 63 static static() { | 65 static static() { |
| 64 return 1; | 66 return 1; |
| 65 } | 67 } |
| 66 static check() { | 68 static check() { |
| 67 var o = new A(); | 69 var o = new A(); |
| 68 o.set(55); | 70 o.set(55); |
| 69 Expect.equals(50, o.get()); | 71 Expect.equals(50, o.get()); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 91 PseudoKWTest.testMain(); | 93 PseudoKWTest.testMain(); |
| 92 A.check(); | 94 A.check(); |
| 93 new B().static(); | 95 new B().static(); |
| 94 Expect.equals(1, new B().operator()); | 96 Expect.equals(1, new B().operator()); |
| 95 Expect.equals(1, A.static()); | 97 Expect.equals(1, A.static()); |
| 96 typedef("T"); | 98 typedef("T"); |
| 97 Expect.equals("typedef T", typedef("T")); | 99 Expect.equals("typedef T", typedef("T")); |
| 98 static("true"); | 100 static("true"); |
| 99 Expect.equals(false, static("true")); | 101 Expect.equals(false, static("true")); |
| 100 } | 102 } |
| OLD | NEW |