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

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

Issue 983713002: Remove 'dart:io' import in builtin.dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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/bin/builtin.dart ('k') | runtime/bin/dartutils.cc » ('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 <stdlib.h> 5 #include <stdlib.h>
6 #include <stdio.h> 6 #include <stdio.h>
7 #include <string.h> 7 #include <string.h>
8 8
9 #include "include/dart_api.h" 9 #include "include/dart_api.h"
10 10
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 V(File_ResolveSymbolicLinks, 1) \ 62 V(File_ResolveSymbolicLinks, 1) \
63 V(File_OpenStdio, 1) \ 63 V(File_OpenStdio, 1) \
64 V(File_GetStdioHandleType, 1) \ 64 V(File_GetStdioHandleType, 1) \
65 V(File_GetType, 2) \ 65 V(File_GetType, 2) \
66 V(File_AreIdentical, 2) \ 66 V(File_AreIdentical, 2) \
67 V(Logger_PrintString, 1) \ 67 V(Logger_PrintString, 1) \
68 V(Builtin_LoadScript, 4) \ 68 V(Builtin_LoadScript, 4) \
69 V(Builtin_AsyncLoadError, 3) \ 69 V(Builtin_AsyncLoadError, 3) \
70 V(Builtin_DoneLoading, 0) \ 70 V(Builtin_DoneLoading, 0) \
71 V(Builtin_NativeLibraryExtension, 0) \ 71 V(Builtin_NativeLibraryExtension, 0) \
72 V(Builtin_GetCurrentDirectory, 0) \
72 73
73 74
74 BUILTIN_NATIVE_LIST(DECLARE_FUNCTION); 75 BUILTIN_NATIVE_LIST(DECLARE_FUNCTION);
75 76
76 static struct NativeEntries { 77 static struct NativeEntries {
77 const char* name_; 78 const char* name_;
78 Dart_NativeFunction function_; 79 Dart_NativeFunction function_;
79 int argument_count_; 80 int argument_count_;
80 } BuiltinEntries[] = { 81 } BuiltinEntries[] = {
81 BUILTIN_NATIVE_LIST(REGISTER_FUNCTION) 82 BUILTIN_NATIVE_LIST(REGISTER_FUNCTION)
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 } else { 135 } else {
135 // Uses fwrite to support printing NUL bytes. 136 // Uses fwrite to support printing NUL bytes.
136 fwrite(chars, 1, length, stdout); 137 fwrite(chars, 1, length, stdout);
137 fputs("\n", stdout); 138 fputs("\n", stdout);
138 } 139 }
139 fflush(stdout); 140 fflush(stdout);
140 } 141 }
141 142
142 } // namespace bin 143 } // namespace bin
143 } // namespace dart 144 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/bin/builtin.dart ('k') | runtime/bin/dartutils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698