OLD | NEW |
1 dart_library.library('cascade', null, /* Imports */[ | 1 dart_library.library('cascade', null, /* Imports */[ |
2 "dart_runtime/dart", | 2 "dart_runtime/dart", |
3 'dart/core' | 3 'dart/core' |
4 ], /* Lazy imports */[ | 4 ], /* Lazy imports */[ |
5 ], function(exports, dart, core) { | 5 ], function(exports, dart, core) { |
6 'use strict'; | 6 'use strict'; |
7 let dartx = dart.dartx; | 7 let dartx = dart.dartx; |
8 class A extends core.Object { | 8 class A extends core.Object { |
9 A() { | 9 A() { |
10 this.x = null; | 10 this.x = null; |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 super.Base(); | 100 super.Base(); |
101 } | 101 } |
102 test_final_field_generic(t) { | 102 test_final_field_generic(t) { |
103 this.x[dartx.add](1); | 103 this.x[dartx.add](1); |
104 this.x[dartx.add](2); | 104 this.x[dartx.add](2); |
105 this.x[dartx.add](3); | 105 this.x[dartx.add](3); |
106 this.x[dartx.add](4); | 106 this.x[dartx.add](4); |
107 } | 107 } |
108 } | 108 } |
109 dart.setSignature(Foo, { | 109 dart.setSignature(Foo, { |
110 methods: () => ({test_final_field_generic: [dart.void, [core.Object]]}) | 110 methods: () => ({test_final_field_generic: [dart.void, [dart.dynamic]]}) |
111 }); | 111 }); |
112 // Exports: | 112 // Exports: |
113 exports.A = A; | 113 exports.A = A; |
114 exports.test_closure_with_mutate = test_closure_with_mutate; | 114 exports.test_closure_with_mutate = test_closure_with_mutate; |
115 exports.test_closure_without_mutate = test_closure_without_mutate; | 115 exports.test_closure_without_mutate = test_closure_without_mutate; |
116 exports.test_mutate_inside_cascade = test_mutate_inside_cascade; | 116 exports.test_mutate_inside_cascade = test_mutate_inside_cascade; |
117 exports.test_mutate_outside_cascade = test_mutate_outside_cascade; | 117 exports.test_mutate_outside_cascade = test_mutate_outside_cascade; |
118 exports.test_VariableDeclaration_single = test_VariableDeclaration_single; | 118 exports.test_VariableDeclaration_single = test_VariableDeclaration_single; |
119 exports.test_VariableDeclaration_last = test_VariableDeclaration_last; | 119 exports.test_VariableDeclaration_last = test_VariableDeclaration_last; |
120 exports.test_VariableDeclaration_first = test_VariableDeclaration_first; | 120 exports.test_VariableDeclaration_first = test_VariableDeclaration_first; |
121 exports.test_increment = test_increment; | 121 exports.test_increment = test_increment; |
122 exports.Base$ = Base$; | 122 exports.Base$ = Base$; |
123 exports.Base = Base; | 123 exports.Base = Base; |
124 exports.Foo = Foo; | 124 exports.Foo = Foo; |
125 }); | 125 }); |
OLD | NEW |