| 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 #ifndef BIN_DARTUTILS_H_ | 5 #ifndef BIN_DARTUTILS_H_ |
| 6 #define BIN_DARTUTILS_H_ | 6 #define BIN_DARTUTILS_H_ |
| 7 | 7 |
| 8 #include "bin/isolate_data.h" | 8 #include "bin/isolate_data.h" |
| 9 #include "include/dart_api.h" | 9 #include "include/dart_api.h" |
| 10 #include "include/dart_native_api.h" | 10 #include "include/dart_native_api.h" |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 static Dart_Handle NewError(const char* format, ...); | 186 static Dart_Handle NewError(const char* format, ...); |
| 187 static Dart_Handle NewInternalError(const char* message); | 187 static Dart_Handle NewInternalError(const char* message); |
| 188 | 188 |
| 189 static Dart_Handle BuiltinLib() { | 189 static Dart_Handle BuiltinLib() { |
| 190 IsolateData* isolate_data = | 190 IsolateData* isolate_data = |
| 191 reinterpret_cast<IsolateData*>(Dart_CurrentIsolateData()); | 191 reinterpret_cast<IsolateData*>(Dart_CurrentIsolateData()); |
| 192 return isolate_data->builtin_lib(); | 192 return isolate_data->builtin_lib(); |
| 193 } | 193 } |
| 194 | 194 |
| 195 static bool SetOriginalWorkingDirectory(); | 195 static bool SetOriginalWorkingDirectory(); |
| 196 static Dart_Handle GetCanonicalizableWorkingDirectory(); |
| 196 | 197 |
| 197 static const char* MapLibraryUrl(const char* url_string); | 198 static const char* MapLibraryUrl(const char* url_string); |
| 198 | 199 |
| 199 static Dart_Handle ResolveScript(Dart_Handle url); | 200 static Dart_Handle ResolveScript(Dart_Handle url); |
| 200 | 201 |
| 201 // Sniffs the specified text_buffer to see if it contains the magic number | 202 // Sniffs the specified text_buffer to see if it contains the magic number |
| 202 // representing a script snapshot. If the text_buffer is a script snapshot | 203 // representing a script snapshot. If the text_buffer is a script snapshot |
| 203 // the return value is an updated pointer to the text_buffer pointing past | 204 // the return value is an updated pointer to the text_buffer pointing past |
| 204 // the magic number value. The 'buffer_len' parameter is also appropriately | 205 // the magic number value. The 'buffer_len' parameter is also appropriately |
| 205 // adjusted. | 206 // adjusted. |
| (...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 bool is_typed_data_; | 665 bool is_typed_data_; |
| 665 | 666 |
| 666 DISALLOW_ALLOCATION(); | 667 DISALLOW_ALLOCATION(); |
| 667 DISALLOW_COPY_AND_ASSIGN(ScopedMemBuffer); | 668 DISALLOW_COPY_AND_ASSIGN(ScopedMemBuffer); |
| 668 }; | 669 }; |
| 669 | 670 |
| 670 } // namespace bin | 671 } // namespace bin |
| 671 } // namespace dart | 672 } // namespace dart |
| 672 | 673 |
| 673 #endif // BIN_DARTUTILS_H_ | 674 #endif // BIN_DARTUTILS_H_ |
| OLD | NEW |