| 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 #include "vm/object.h" | 5 #include "vm/object.h" |
| 6 | 6 |
| 7 #include "include/dart_api.h" | 7 #include "include/dart_api.h" |
| 8 #include "platform/assert.h" | 8 #include "platform/assert.h" |
| 9 #include "vm/assembler.h" | 9 #include "vm/assembler.h" |
| 10 #include "vm/cpu.h" | 10 #include "vm/cpu.h" |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 V(CoreLibrary, Object, _instanceOf) \ | 159 V(CoreLibrary, Object, _instanceOf) \ |
| 160 V(CoreLibrary, _List, _List.) \ | 160 V(CoreLibrary, _List, _List.) \ |
| 161 V(CoreLibrary, AssertionError, _throwNew) \ | 161 V(CoreLibrary, AssertionError, _throwNew) \ |
| 162 V(CoreLibrary, TypeError, _throwNew) \ | 162 V(CoreLibrary, TypeError, _throwNew) \ |
| 163 V(CoreLibrary, FallThroughError, _throwNew) \ | 163 V(CoreLibrary, FallThroughError, _throwNew) \ |
| 164 V(CoreLibrary, AbstractClassInstantiationError, _throwNew) \ | 164 V(CoreLibrary, AbstractClassInstantiationError, _throwNew) \ |
| 165 V(CoreLibrary, int, _throwFormatException) \ | 165 V(CoreLibrary, int, _throwFormatException) \ |
| 166 V(CoreLibrary, int, _parse) \ | 166 V(CoreLibrary, int, _parse) \ |
| 167 V(CoreLibrary, StackTrace, _setupFullStackTrace) \ | 167 V(CoreLibrary, StackTrace, _setupFullStackTrace) \ |
| 168 V(CoreLibrary, _OneByteString, _setAt) \ | 168 V(CoreLibrary, _OneByteString, _setAt) \ |
| 169 V(CoreLibrary, _StringBase, _substringUncheckedNative) \ |
| 170 V(CoreLibrary, _OneByteString, _substringUncheckedNative) \ |
| 171 V(CoreLibrary, _GrowableList, _setData) \ |
| 172 V(CoreLibrary, _GrowableList, _setLength) \ |
| 169 V(TypedDataLibrary, _TypedList, _getInt8) \ | 173 V(TypedDataLibrary, _TypedList, _getInt8) \ |
| 170 V(TypedDataLibrary, _TypedList, _setInt8) \ | 174 V(TypedDataLibrary, _TypedList, _setInt8) \ |
| 171 V(TypedDataLibrary, _TypedList, _getUint8) \ | 175 V(TypedDataLibrary, _TypedList, _getUint8) \ |
| 172 V(TypedDataLibrary, _TypedList, _setUint8) \ | 176 V(TypedDataLibrary, _TypedList, _setUint8) \ |
| 173 V(TypedDataLibrary, _TypedList, _getInt16) \ | 177 V(TypedDataLibrary, _TypedList, _getInt16) \ |
| 174 V(TypedDataLibrary, _TypedList, _setInt16) \ | 178 V(TypedDataLibrary, _TypedList, _setInt16) \ |
| 175 V(TypedDataLibrary, _TypedList, _getUint16) \ | 179 V(TypedDataLibrary, _TypedList, _getUint16) \ |
| 176 V(TypedDataLibrary, _TypedList, _setUint16) \ | 180 V(TypedDataLibrary, _TypedList, _setUint16) \ |
| 177 V(TypedDataLibrary, _TypedList, _getInt32) \ | 181 V(TypedDataLibrary, _TypedList, _getInt32) \ |
| 178 V(TypedDataLibrary, _TypedList, _setInt32) \ | 182 V(TypedDataLibrary, _TypedList, _setInt32) \ |
| (...skipping 15745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15924 return "_MirrorReference"; | 15928 return "_MirrorReference"; |
| 15925 } | 15929 } |
| 15926 | 15930 |
| 15927 | 15931 |
| 15928 void MirrorReference::PrintToJSONStream(JSONStream* stream, bool ref) const { | 15932 void MirrorReference::PrintToJSONStream(JSONStream* stream, bool ref) const { |
| 15929 JSONObject jsobj(stream); | 15933 JSONObject jsobj(stream); |
| 15930 } | 15934 } |
| 15931 | 15935 |
| 15932 | 15936 |
| 15933 } // namespace dart | 15937 } // namespace dart |
| OLD | NEW |