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

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

Issue 8637018: Implement type checking of map literals (issue 221). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years, 1 month 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
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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_BOOTSTRAP_NATIVES_H_ 5 #ifndef VM_BOOTSTRAP_NATIVES_H_
6 #define VM_BOOTSTRAP_NATIVES_H_ 6 #define VM_BOOTSTRAP_NATIVES_H_
7 7
8 #include "vm/native_entry.h" 8 #include "vm/native_entry.h"
9 9
10 // bootstrap dart natives used in the core dart library. 10 // bootstrap dart natives used in the core dart library.
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 V(MathNatives_parseDouble, 1) \ 90 V(MathNatives_parseDouble, 1) \
91 V(DateNatives_brokenDownToSecondsSinceEpoch, 7) \ 91 V(DateNatives_brokenDownToSecondsSinceEpoch, 7) \
92 V(DateNatives_currentTimeMillis, 0) \ 92 V(DateNatives_currentTimeMillis, 0) \
93 V(DateNatives_getYear, 2) \ 93 V(DateNatives_getYear, 2) \
94 V(DateNatives_getMonth, 2) \ 94 V(DateNatives_getMonth, 2) \
95 V(DateNatives_getDay, 2) \ 95 V(DateNatives_getDay, 2) \
96 V(DateNatives_getHours, 2) \ 96 V(DateNatives_getHours, 2) \
97 V(DateNatives_getMinutes, 2) \ 97 V(DateNatives_getMinutes, 2) \
98 V(DateNatives_getSeconds, 2) \ 98 V(DateNatives_getSeconds, 2) \
99 V(AssertionError_throwNew, 2) \ 99 V(AssertionError_throwNew, 2) \
100 V(TypeError_throwNew, 4) \
100 V(FallThroughError_throwNew, 1) \ 101 V(FallThroughError_throwNew, 1) \
101 V(Clock_now, 0) \ 102 V(Clock_now, 0) \
102 V(Clock_frequency, 0) \ 103 V(Clock_frequency, 0) \
103 V(ByteBuffer_allocate, 1) \ 104 V(ByteBuffer_allocate, 1) \
104 V(ByteBuffer_getLength, 1) \ 105 V(ByteBuffer_getLength, 1) \
105 V(ByteBuffer_getInt8, 2) \ 106 V(ByteBuffer_getInt8, 2) \
106 V(ByteBuffer_setInt8, 3) \ 107 V(ByteBuffer_setInt8, 3) \
107 V(ByteBuffer_getUint8, 2) \ 108 V(ByteBuffer_getUint8, 2) \
108 V(ByteBuffer_setUint8, 3) \ 109 V(ByteBuffer_setUint8, 3) \
109 V(ByteBuffer_getInt16, 2) \ 110 V(ByteBuffer_getInt16, 2) \
(...skipping 12 matching lines...) Expand all
122 V(ByteBuffer_setFloat32, 3) \ 123 V(ByteBuffer_setFloat32, 3) \
123 V(ByteBuffer_getFloat64, 2) \ 124 V(ByteBuffer_getFloat64, 2) \
124 V(ByteBuffer_setFloat64, 3) \ 125 V(ByteBuffer_setFloat64, 3) \
125 126
126 127
127 BOOTSTRAP_NATIVE_LIST(DECLARE_NATIVE_ENTRY) 128 BOOTSTRAP_NATIVE_LIST(DECLARE_NATIVE_ENTRY)
128 129
129 } // namespace dart 130 } // namespace dart
130 131
131 #endif // VM_BOOTSTRAP_NATIVES_H_ 132 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698