OLD | NEW |
(Empty) | |
| 1 dart_library.library('language/load_indexed_constant_test', null, /* Imports */[ |
| 2 'dart_sdk', |
| 3 'expect' |
| 4 ], function load__load_indexed_constant_test(exports, dart_sdk, expect) { |
| 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 load_indexed_constant_test = Object.create(null); |
| 11 let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionT
ype(dart.dynamic, [])))(); |
| 12 load_indexed_constant_test.main = function() { |
| 13 expect$.Expect.equals(101, load_indexed_constant_test.stringIndexedLoad()); |
| 14 expect$.Expect.equals(102, load_indexed_constant_test.arrayIndexedLoad()); |
| 15 for (let i = 0; i < 20; i++) { |
| 16 load_indexed_constant_test.stringIndexedLoad(); |
| 17 load_indexed_constant_test.arrayIndexedLoad(); |
| 18 } |
| 19 expect$.Expect.equals(101, load_indexed_constant_test.stringIndexedLoad()); |
| 20 expect$.Expect.equals(102, load_indexed_constant_test.arrayIndexedLoad()); |
| 21 }; |
| 22 dart.fn(load_indexed_constant_test.main, VoidTodynamic()); |
| 23 load_indexed_constant_test.stringIndexedLoad = function() { |
| 24 return "Hello"[dartx.codeUnitAt](1); |
| 25 }; |
| 26 dart.fn(load_indexed_constant_test.stringIndexedLoad, VoidTodynamic()); |
| 27 let const$; |
| 28 load_indexed_constant_test.arrayIndexedLoad = function() { |
| 29 return (const$ || (const$ = dart.constList([101, 102, 103], core.int)))[dart
x.get](1); |
| 30 }; |
| 31 dart.fn(load_indexed_constant_test.arrayIndexedLoad, VoidTodynamic()); |
| 32 // Exports: |
| 33 exports.load_indexed_constant_test = load_indexed_constant_test; |
| 34 }); |
OLD | NEW |