| 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 4907 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |