| 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/bigint_operations.h" | 10 #include "vm/bigint_operations.h" |
| (...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 SET_CLASS_NAME(patch_class, PatchClass); | 450 SET_CLASS_NAME(patch_class, PatchClass); |
| 451 SET_CLASS_NAME(function, Function); | 451 SET_CLASS_NAME(function, Function); |
| 452 SET_CLASS_NAME(closure_data, ClosureData); | 452 SET_CLASS_NAME(closure_data, ClosureData); |
| 453 SET_CLASS_NAME(redirection_data, RedirectionData); | 453 SET_CLASS_NAME(redirection_data, RedirectionData); |
| 454 SET_CLASS_NAME(field, Field); | 454 SET_CLASS_NAME(field, Field); |
| 455 SET_CLASS_NAME(literal_token, LiteralToken); | 455 SET_CLASS_NAME(literal_token, LiteralToken); |
| 456 SET_CLASS_NAME(token_stream, TokenStream); | 456 SET_CLASS_NAME(token_stream, TokenStream); |
| 457 SET_CLASS_NAME(script, Script); | 457 SET_CLASS_NAME(script, Script); |
| 458 SET_CLASS_NAME(library, LibraryClass); | 458 SET_CLASS_NAME(library, LibraryClass); |
| 459 SET_CLASS_NAME(library_prefix, LibraryPrefix); | 459 SET_CLASS_NAME(library_prefix, LibraryPrefix); |
| 460 SET_CLASS_NAME(namespace, Namespace); |
| 460 SET_CLASS_NAME(code, Code); | 461 SET_CLASS_NAME(code, Code); |
| 461 SET_CLASS_NAME(instructions, Instructions); | 462 SET_CLASS_NAME(instructions, Instructions); |
| 462 SET_CLASS_NAME(pc_descriptors, PcDescriptors); | 463 SET_CLASS_NAME(pc_descriptors, PcDescriptors); |
| 463 SET_CLASS_NAME(stackmap, Stackmap); | 464 SET_CLASS_NAME(stackmap, Stackmap); |
| 464 SET_CLASS_NAME(var_descriptors, LocalVarDescriptors); | 465 SET_CLASS_NAME(var_descriptors, LocalVarDescriptors); |
| 465 SET_CLASS_NAME(exception_handlers, ExceptionHandlers); | 466 SET_CLASS_NAME(exception_handlers, ExceptionHandlers); |
| 466 SET_CLASS_NAME(deopt_info, DeoptInfo); | 467 SET_CLASS_NAME(deopt_info, DeoptInfo); |
| 467 SET_CLASS_NAME(context, Context); | 468 SET_CLASS_NAME(context, Context); |
| 468 SET_CLASS_NAME(context_scope, ContextScope); | 469 SET_CLASS_NAME(context_scope, ContextScope); |
| 469 SET_CLASS_NAME(icdata, ICData); | 470 SET_CLASS_NAME(icdata, ICData); |
| (...skipping 11653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12123 } | 12124 } |
| 12124 return result.raw(); | 12125 return result.raw(); |
| 12125 } | 12126 } |
| 12126 | 12127 |
| 12127 | 12128 |
| 12128 const char* WeakProperty::ToCString() const { | 12129 const char* WeakProperty::ToCString() const { |
| 12129 return "_WeakProperty"; | 12130 return "_WeakProperty"; |
| 12130 } | 12131 } |
| 12131 | 12132 |
| 12132 } // namespace dart | 12133 } // namespace dart |
| OLD | NEW |