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

Side by Side Diff: runtime/bin/dartutils.cc

Issue 8585049: Add an interface for retrieving the value of unsigned 64-bit integers. (Closed) Base URL: https://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
« no previous file with comments | « no previous file | runtime/include/dart_api.h » ('j') | runtime/vm/dart_api_impl.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "bin/dartutils.h" 5 #include "bin/dartutils.h"
6 6
7 const char* DartUtils::kBuiltinLibURL = "./dart:builtin-lib"; 7 const char* DartUtils::kBuiltinLibURL = "./dart:builtin-lib";
8 const char* DartUtils::kBuiltinLibSpec = "library { }"; 8 const char* DartUtils::kBuiltinLibSpec = "library { }";
9 const char* DartUtils::kIdFieldName = "_id"; 9 const char* DartUtils::kIdFieldName = "_id";
10 10
11 11
12 int64_t DartUtils::GetIntegerValue(Dart_Handle value_obj) { 12 int64_t DartUtils::GetIntegerValue(Dart_Handle value_obj) {
13 ASSERT(Dart_IsInteger(value_obj)); 13 ASSERT(Dart_IsInteger(value_obj));
14 int64_t value = 0; 14 int64_t value = 0;
15 Dart_Handle result = Dart_IntegerValue(value_obj, &value); 15 Dart_Handle result = Dart_IntegerToInt64(value_obj, &value);
16 ASSERT(!Dart_IsError(result)); 16 ASSERT(!Dart_IsError(result));
17 return value; 17 return value;
18 } 18 }
19 19
20 const char* DartUtils::GetStringValue(Dart_Handle str_obj) { 20 const char* DartUtils::GetStringValue(Dart_Handle str_obj) {
21 const char* cstring = NULL; 21 const char* cstring = NULL;
22 Dart_Handle result = Dart_StringToCString(str_obj, &cstring); 22 Dart_Handle result = Dart_StringToCString(str_obj, &cstring);
23 ASSERT(!Dart_IsError(result)); 23 ASSERT(!Dart_IsError(result));
24 return cstring; 24 return cstring;
25 } 25 }
(...skipping 25 matching lines...) Expand all
51 } 51 }
52 52
53 void DartUtils::SetStringInstanceField(Dart_Handle handle, 53 void DartUtils::SetStringInstanceField(Dart_Handle handle,
54 const char* name, 54 const char* name,
55 const char* val) { 55 const char* val) {
56 Dart_Handle result = Dart_SetInstanceField(handle, 56 Dart_Handle result = Dart_SetInstanceField(handle,
57 Dart_NewString(name), 57 Dart_NewString(name),
58 Dart_NewString(val)); 58 Dart_NewString(val));
59 ASSERT(!Dart_IsError(result)); 59 ASSERT(!Dart_IsError(result));
60 } 60 }
OLDNEW
« no previous file with comments | « no previous file | runtime/include/dart_api.h » ('j') | runtime/vm/dart_api_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698