Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(102)

Side by Side Diff: runtime/vm/object.cc

Issue 10982012: Address Siva's comments (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/vm/parser.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698