| 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 1945 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1956 | 1956 |
| 1957 static void InitCoreLibrary(Isolate* isolate); | 1957 static void InitCoreLibrary(Isolate* isolate); |
| 1958 static void InitCollectionLibrary(Isolate* isolate); | 1958 static void InitCollectionLibrary(Isolate* isolate); |
| 1959 static void InitMathLibrary(Isolate* isolate); | 1959 static void InitMathLibrary(Isolate* isolate); |
| 1960 static void InitIsolateLibrary(Isolate* isolate); | 1960 static void InitIsolateLibrary(Isolate* isolate); |
| 1961 static void InitMirrorsLibrary(Isolate* isolate); | 1961 static void InitMirrorsLibrary(Isolate* isolate); |
| 1962 static void InitScalarlistLibrary(Isolate* isolate); | 1962 static void InitScalarlistLibrary(Isolate* isolate); |
| 1963 static void InitNativeWrappersLibrary(Isolate* isolate); | 1963 static void InitNativeWrappersLibrary(Isolate* isolate); |
| 1964 | 1964 |
| 1965 static RawLibrary* CoreLibrary(); | 1965 static RawLibrary* CoreLibrary(); |
| 1966 static RawLibrary* CoreImplLibrary(); | |
| 1967 static RawLibrary* CollectionLibrary(); | 1966 static RawLibrary* CollectionLibrary(); |
| 1968 static RawLibrary* MathLibrary(); | 1967 static RawLibrary* MathLibrary(); |
| 1969 static RawLibrary* IsolateLibrary(); | 1968 static RawLibrary* IsolateLibrary(); |
| 1970 static RawLibrary* MirrorsLibrary(); | 1969 static RawLibrary* MirrorsLibrary(); |
| 1971 static RawLibrary* ScalarlistLibrary(); | 1970 static RawLibrary* ScalarlistLibrary(); |
| 1972 static RawLibrary* NativeWrappersLibrary(); | 1971 static RawLibrary* NativeWrappersLibrary(); |
| 1973 | 1972 |
| 1974 // Eagerly compile all classes and functions in the library. | 1973 // Eagerly compile all classes and functions in the library. |
| 1975 static RawError* CompileAll(); | 1974 static RawError* CompileAll(); |
| 1976 | 1975 |
| (...skipping 3909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5886 if (this->CharAt(i) != str.CharAt(begin_index + i)) { | 5885 if (this->CharAt(i) != str.CharAt(begin_index + i)) { |
| 5887 return false; | 5886 return false; |
| 5888 } | 5887 } |
| 5889 } | 5888 } |
| 5890 return true; | 5889 return true; |
| 5891 } | 5890 } |
| 5892 | 5891 |
| 5893 } // namespace dart | 5892 } // namespace dart |
| 5894 | 5893 |
| 5895 #endif // VM_OBJECT_H_ | 5894 #endif // VM_OBJECT_H_ |
| OLD | NEW |