| OLD | NEW |
| 1 var cascade; | 1 var cascade, core; |
| 2 (function(exports) { | 2 (function(exports, core) { |
| 3 'use strict'; | 3 'use strict'; |
| 4 class A extends core.Object { | 4 class A extends core.Object { |
| 5 A() { | 5 A() { |
| 6 this.x = null; | 6 this.x = null; |
| 7 } | 7 } |
| 8 } | 8 } |
| 9 // Function test_closure_with_mutate: () → void | 9 // Function test_closure_with_mutate: () → void |
| 10 function test_closure_with_mutate() { | 10 function test_closure_with_mutate() { |
| 11 let a = new A(); | 11 let a = new A(); |
| 12 a.x = () => { | 12 a.x = () => { |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 exports.test_closure_without_mutate = test_closure_without_mutate; | 108 exports.test_closure_without_mutate = test_closure_without_mutate; |
| 109 exports.test_mutate_inside_cascade = test_mutate_inside_cascade; | 109 exports.test_mutate_inside_cascade = test_mutate_inside_cascade; |
| 110 exports.test_mutate_outside_cascade = test_mutate_outside_cascade; | 110 exports.test_mutate_outside_cascade = test_mutate_outside_cascade; |
| 111 exports.test_VariableDeclaration_single = test_VariableDeclaration_single; | 111 exports.test_VariableDeclaration_single = test_VariableDeclaration_single; |
| 112 exports.test_VariableDeclaration_last = test_VariableDeclaration_last; | 112 exports.test_VariableDeclaration_last = test_VariableDeclaration_last; |
| 113 exports.test_VariableDeclaration_first = test_VariableDeclaration_first; | 113 exports.test_VariableDeclaration_first = test_VariableDeclaration_first; |
| 114 exports.test_increment = test_increment; | 114 exports.test_increment = test_increment; |
| 115 exports.Base$ = Base$; | 115 exports.Base$ = Base$; |
| 116 exports.Base = Base; | 116 exports.Base = Base; |
| 117 exports.Foo = Foo; | 117 exports.Foo = Foo; |
| 118 })(cascade || (cascade = {})); | 118 })(cascade || (cascade = {}), core); |
| OLD | NEW |