OLD | NEW |
(Empty) | |
| 1 dart_library.library('language/compile_time_constant_p_test_none_multi', null, /
* Imports */[ |
| 2 'dart_sdk', |
| 3 'expect' |
| 4 ], function load__compile_time_constant_p_test_none_multi(exports, dart_sdk, exp
ect) { |
| 5 'use strict'; |
| 6 const core = dart_sdk.core; |
| 7 const dart = dart_sdk.dart; |
| 8 const dartx = dart_sdk.dartx; |
| 9 const expect$ = expect.expect; |
| 10 const compile_time_constant_p_test_none_multi = Object.create(null); |
| 11 let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionT
ype(dart.dynamic, [])))(); |
| 12 compile_time_constant_p_test_none_multi.A = class A extends core.Object { |
| 13 new() { |
| 14 this.x = null; |
| 15 } |
| 16 }; |
| 17 dart.setSignature(compile_time_constant_p_test_none_multi.A, { |
| 18 constructors: () => ({new: dart.definiteFunctionType(compile_time_constant_p
_test_none_multi.A, [])}) |
| 19 }); |
| 20 compile_time_constant_p_test_none_multi.B = class B extends compile_time_const
ant_p_test_none_multi.A { |
| 21 new() { |
| 22 super.new(); |
| 23 } |
| 24 }; |
| 25 dart.setSignature(compile_time_constant_p_test_none_multi.B, { |
| 26 constructors: () => ({new: dart.definiteFunctionType(compile_time_constant_p
_test_none_multi.B, [])}) |
| 27 }); |
| 28 compile_time_constant_p_test_none_multi.b = dart.const(new compile_time_consta
nt_p_test_none_multi.B()); |
| 29 compile_time_constant_p_test_none_multi.main = function() { |
| 30 expect$.Expect.equals(null, compile_time_constant_p_test_none_multi.b.x); |
| 31 }; |
| 32 dart.fn(compile_time_constant_p_test_none_multi.main, VoidTodynamic()); |
| 33 // Exports: |
| 34 exports.compile_time_constant_p_test_none_multi = compile_time_constant_p_test
_none_multi; |
| 35 }); |
OLD | NEW |