| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 | 4 |
| 5 #library("dart:core"); | 5 #library("dart:core"); |
| 6 #import("dart:coreimpl"); | 6 #import("dart:coreimpl"); |
| 7 | 7 |
| 8 // TODO(jimhug): Better way to map in standard corelib | 8 // TODO(jimhug): Better way to map in standard corelib |
| 9 #source("../../corelib/src/bool.dart"); | 9 #source("../../corelib/src/bool.dart"); |
| 10 #source("../../corelib/src/collection.dart"); | 10 #source("../../corelib/src/collection.dart"); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #source("../../corelib/src/isolate.dart"); | 21 #source("../../corelib/src/isolate.dart"); |
| 22 #source("../../corelib/src/iterable.dart"); | 22 #source("../../corelib/src/iterable.dart"); |
| 23 #source("../../corelib/src/iterator.dart"); | 23 #source("../../corelib/src/iterator.dart"); |
| 24 #source("../../corelib/src/list.dart"); | 24 #source("../../corelib/src/list.dart"); |
| 25 #source("../../corelib/src/map.dart"); | 25 #source("../../corelib/src/map.dart"); |
| 26 #source("math.dart"); // overriden to be more directly native | 26 #source("math.dart"); // overriden to be more directly native |
| 27 #source("natives.dart"); // native helpers generated by the compiler | 27 #source("natives.dart"); // native helpers generated by the compiler |
| 28 #source("num.dart"); // overriden to include int members on num - weird typing | 28 #source("num.dart"); // overriden to include int members on num - weird typing |
| 29 #source("../../corelib/src/pattern.dart"); | 29 #source("../../corelib/src/pattern.dart"); |
| 30 #source("../../corelib/src/promise.dart"); | 30 #source("../../corelib/src/promise.dart"); |
| 31 #source("../../corelib/src/proxy.dart"); |
| 31 #source("../../corelib/src/queue.dart"); | 32 #source("../../corelib/src/queue.dart"); |
| 32 #source("../../corelib/src/regexp.dart"); | 33 #source("../../corelib/src/regexp.dart"); |
| 33 #source("../../corelib/src/set.dart"); | 34 #source("../../corelib/src/set.dart"); |
| 34 #source("../../corelib/src/stopwatch.dart"); | 35 #source("../../corelib/src/stopwatch.dart"); |
| 35 #source("../../corelib/src/string.dart"); | 36 #source("../../corelib/src/string.dart"); |
| 36 #source("../../corelib/src/strings.dart"); | 37 #source("../../corelib/src/strings.dart"); |
| 37 #source("../../corelib/src/string_buffer.dart"); | 38 #source("../../corelib/src/string_buffer.dart"); |
| 38 #source("../../corelib/src/time_zone.dart"); | 39 #source("../../corelib/src/time_zone.dart"); |
| 39 | 40 |
| 40 // TODO(jimhug): Ad-hoc cut-paste-and-edit from compiler/lib below: | 41 // TODO(jimhug): Ad-hoc cut-paste-and-edit from compiler/lib below: |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 String toString() native; | 116 String toString() native; |
| 116 | 117 |
| 117 // TODO(jmesserly): optimize this. No need to call it. | 118 // TODO(jmesserly): optimize this. No need to call it. |
| 118 get dynamic() => this; | 119 get dynamic() => this; |
| 119 | 120 |
| 120 // TODO(jmesserly): add named args. For now stay compatible with the VM. | 121 // TODO(jmesserly): add named args. For now stay compatible with the VM. |
| 121 noSuchMethod(String name, List args) { | 122 noSuchMethod(String name, List args) { |
| 122 throw new NoSuchMethodException(this, name, args); | 123 throw new NoSuchMethodException(this, name, args); |
| 123 } | 124 } |
| 124 } | 125 } |
| OLD | NEW |