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

Side by Side Diff: runtime/vm/reusable_handles.h

Issue 203443012: Fix canonicalization of types. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 9 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.cc ('k') | tests/language/language.status » ('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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 #ifndef VM_REUSABLE_HANDLES_H_ 5 #ifndef VM_REUSABLE_HANDLES_H_
6 #define VM_REUSABLE_HANDLES_H_ 6 #define VM_REUSABLE_HANDLES_H_
7 7
8 #include "vm/allocation.h" 8 #include "vm/allocation.h"
9 #include "vm/handles.h" 9 #include "vm/handles.h"
10 #include "vm/object.h" 10 #include "vm/object.h"
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 #define REUSABLE_STRING_HANDLESCOPE(isolate) \ 85 #define REUSABLE_STRING_HANDLESCOPE(isolate) \
86 ReusableStringHandleScope reused_string_handle(isolate); 86 ReusableStringHandleScope reused_string_handle(isolate);
87 #define REUSABLE_INSTANCE_HANDLESCOPE(isolate) \ 87 #define REUSABLE_INSTANCE_HANDLESCOPE(isolate) \
88 ReusableInstanceHandleScope reused_instance_handle(isolate); 88 ReusableInstanceHandleScope reused_instance_handle(isolate);
89 #define REUSABLE_FUNCTION_HANDLESCOPE(isolate) \ 89 #define REUSABLE_FUNCTION_HANDLESCOPE(isolate) \
90 ReusableFunctionHandleScope reused_function_handle(isolate); 90 ReusableFunctionHandleScope reused_function_handle(isolate);
91 #define REUSABLE_FIELD_HANDLESCOPE(isolate) \ 91 #define REUSABLE_FIELD_HANDLESCOPE(isolate) \
92 ReusableFieldHandleScope reused_field_handle(isolate); 92 ReusableFieldHandleScope reused_field_handle(isolate);
93 #define REUSABLE_CLASS_HANDLESCOPE(isolate) \ 93 #define REUSABLE_CLASS_HANDLESCOPE(isolate) \
94 ReusableClassHandleScope reused_class_handle(isolate); 94 ReusableClassHandleScope reused_class_handle(isolate);
95 #define REUSABLE_ABSTRACT_TYPE_HANDLESCOPE(isolate) \
96 ReusableAbstractTypeHandleScope reused_abstract_type(isolate);
95 #define REUSABLE_TYPE_PARAMETER_HANDLESCOPE(isolate) \ 97 #define REUSABLE_TYPE_PARAMETER_HANDLESCOPE(isolate) \
96 ReusableTypeParameterHandleScope reused_type_parameter(isolate); 98 ReusableTypeParameterHandleScope reused_type_parameter(isolate);
97 #define REUSABLE_TYPE_ARGUMENTS_HANDLESCOPE(isolate) \ 99 #define REUSABLE_TYPE_ARGUMENTS_HANDLESCOPE(isolate) \
98 ReusableTypeArgumentsHandleScope reused_type_arguments_handle(isolate); 100 ReusableTypeArgumentsHandleScope reused_type_arguments_handle(isolate);
99 101
100 } // namespace dart 102 } // namespace dart
101 103
102 #endif // VM_REUSABLE_HANDLES_H_ 104 #endif // VM_REUSABLE_HANDLES_H_
OLDNEW
« no previous file with comments | « runtime/vm/object.cc ('k') | tests/language/language.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698