OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2 * Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3 * for details. All rights reserved. Use of this source code is governed by a | 3 * for details. All rights reserved. Use of this source code is governed by a |
4 * BSD-style license that can be found in the LICENSE file. | 4 * BSD-style license that can be found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 #ifndef INCLUDE_DART_API_H_ | 7 #ifndef RUNTIME_INCLUDE_DART_API_H_ |
8 #define INCLUDE_DART_API_H_ | 8 #define RUNTIME_INCLUDE_DART_API_H_ |
9 | 9 |
10 /** \mainpage Dart Embedding API Reference | 10 /** \mainpage Dart Embedding API Reference |
11 * | 11 * |
12 * Dart is a class-based programming language for creating structured | 12 * Dart is a class-based programming language for creating structured |
13 * web applications. This reference describes the Dart embedding api, | 13 * web applications. This reference describes the Dart embedding api, |
14 * which is used to embed the Dart Virtual Machine within an | 14 * which is used to embed the Dart Virtual Machine within an |
15 * application. | 15 * application. |
16 * | 16 * |
17 * This reference is generated from the header include/dart_api.h. | 17 * This reference is generated from the header include/dart_api.h. |
18 */ | 18 */ |
(...skipping 3177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3196 /** | 3196 /** |
3197 * Returns whether the VM was initialized with a precompiled snapshot. Only | 3197 * Returns whether the VM was initialized with a precompiled snapshot. Only |
3198 * valid after Dart_Initialize. | 3198 * valid after Dart_Initialize. |
3199 * DEPRECATED. This is currently used to disable Platform.executable and | 3199 * DEPRECATED. This is currently used to disable Platform.executable and |
3200 * Platform.resolvedExecutable under precompilation to prevent process | 3200 * Platform.resolvedExecutable under precompilation to prevent process |
3201 * spawning tests from becoming fork-bombs. | 3201 * spawning tests from becoming fork-bombs. |
3202 */ | 3202 */ |
3203 DART_EXPORT bool Dart_IsRunningPrecompiledCode(); | 3203 DART_EXPORT bool Dart_IsRunningPrecompiledCode(); |
3204 | 3204 |
3205 #endif /* INCLUDE_DART_API_H_ */ /* NOLINT */ | 3205 #endif /* INCLUDE_DART_API_H_ */ /* NOLINT */ |
OLD | NEW |