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

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

Issue 19287003: Use proper internal name for implicit static final getters. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 5 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 | « runtime/vm/object.h ('k') | runtime/vm/parser.h » ('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/cpu.h" 10 #include "vm/cpu.h"
(...skipping 4907 matching lines...) Expand 10 before | Expand all | Expand 10 after
4918 break; 4918 break;
4919 case RawFunction::kConstructor: 4919 case RawFunction::kConstructor:
4920 kind_str = is_static() ? " factory" : " constructor"; 4920 kind_str = is_static() ? " factory" : " constructor";
4921 break; 4921 break;
4922 case RawFunction::kImplicitGetter: 4922 case RawFunction::kImplicitGetter:
4923 kind_str = " getter"; 4923 kind_str = " getter";
4924 break; 4924 break;
4925 case RawFunction::kImplicitSetter: 4925 case RawFunction::kImplicitSetter:
4926 kind_str = " setter"; 4926 kind_str = " setter";
4927 break; 4927 break;
4928 case RawFunction::kConstImplicitGetter: 4928 case RawFunction::kImplicitStaticFinalGetter:
4929 kind_str = " const-getter"; 4929 kind_str = " static-final-getter";
4930 break; 4930 break;
4931 case RawFunction::kMethodExtractor: 4931 case RawFunction::kMethodExtractor:
4932 kind_str = " method-extractor"; 4932 kind_str = " method-extractor";
4933 break; 4933 break;
4934 case RawFunction::kNoSuchMethodDispatcher: 4934 case RawFunction::kNoSuchMethodDispatcher:
4935 kind_str = " no-such-method-dispatcher"; 4935 kind_str = " no-such-method-dispatcher";
4936 break; 4936 break;
4937 case RawFunction::kInvokeFieldDispatcher: 4937 case RawFunction::kInvokeFieldDispatcher:
4938 kind_str = "invoke-field-dispatcher"; 4938 kind_str = "invoke-field-dispatcher";
4939 break; 4939 break;
(...skipping 9271 matching lines...) Expand 10 before | Expand all | Expand 10 after
14211 } 14211 }
14212 14212
14213 14213
14214 void MirrorReference::PrintToJSONStream(JSONStream* stream, bool ref) const { 14214 void MirrorReference::PrintToJSONStream(JSONStream* stream, bool ref) const {
14215 stream->OpenObject(); 14215 stream->OpenObject();
14216 stream->CloseObject(); 14216 stream->CloseObject();
14217 } 14217 }
14218 14218
14219 14219
14220 } // namespace dart 14220 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/object.h ('k') | runtime/vm/parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698