| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 #ifndef VM_OBJECT_H_ | 5 #ifndef VM_OBJECT_H_ |
| 6 #define VM_OBJECT_H_ | 6 #define VM_OBJECT_H_ |
| 7 | 7 |
| 8 #include "include/dart_api.h" | 8 #include "include/dart_api.h" |
| 9 #include "platform/assert.h" | 9 #include "platform/assert.h" |
| 10 #include "platform/utils.h" | 10 #include "platform/utils.h" |
| (...skipping 1937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1948 | 1948 |
| 1949 static void InitCoreLibrary(Isolate* isolate); | 1949 static void InitCoreLibrary(Isolate* isolate); |
| 1950 static void InitCollectionLibrary(Isolate* isolate); | 1950 static void InitCollectionLibrary(Isolate* isolate); |
| 1951 static void InitMathLibrary(Isolate* isolate); | 1951 static void InitMathLibrary(Isolate* isolate); |
| 1952 static void InitIsolateLibrary(Isolate* isolate); | 1952 static void InitIsolateLibrary(Isolate* isolate); |
| 1953 static void InitMirrorsLibrary(Isolate* isolate); | 1953 static void InitMirrorsLibrary(Isolate* isolate); |
| 1954 static void InitScalarlistLibrary(Isolate* isolate); | 1954 static void InitScalarlistLibrary(Isolate* isolate); |
| 1955 static void InitNativeWrappersLibrary(Isolate* isolate); | 1955 static void InitNativeWrappersLibrary(Isolate* isolate); |
| 1956 | 1956 |
| 1957 static RawLibrary* CoreLibrary(); | 1957 static RawLibrary* CoreLibrary(); |
| 1958 static RawLibrary* CoreImplLibrary(); | |
| 1959 static RawLibrary* CollectionLibrary(); | 1958 static RawLibrary* CollectionLibrary(); |
| 1960 static RawLibrary* MathLibrary(); | 1959 static RawLibrary* MathLibrary(); |
| 1961 static RawLibrary* IsolateLibrary(); | 1960 static RawLibrary* IsolateLibrary(); |
| 1962 static RawLibrary* MirrorsLibrary(); | 1961 static RawLibrary* MirrorsLibrary(); |
| 1963 static RawLibrary* ScalarlistLibrary(); | 1962 static RawLibrary* ScalarlistLibrary(); |
| 1964 static RawLibrary* NativeWrappersLibrary(); | 1963 static RawLibrary* NativeWrappersLibrary(); |
| 1965 | 1964 |
| 1966 // Eagerly compile all classes and functions in the library. | 1965 // Eagerly compile all classes and functions in the library. |
| 1967 static RawError* CompileAll(); | 1966 static RawError* CompileAll(); |
| 1968 | 1967 |
| (...skipping 3905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5874 if (this->CharAt(i) != str.CharAt(begin_index + i)) { | 5873 if (this->CharAt(i) != str.CharAt(begin_index + i)) { |
| 5875 return false; | 5874 return false; |
| 5876 } | 5875 } |
| 5877 } | 5876 } |
| 5878 return true; | 5877 return true; |
| 5879 } | 5878 } |
| 5880 | 5879 |
| 5881 } // namespace dart | 5880 } // namespace dart |
| 5882 | 5881 |
| 5883 #endif // VM_OBJECT_H_ | 5882 #endif // VM_OBJECT_H_ |
| OLD | NEW |