-
Notifications
You must be signed in to change notification settings - Fork 1.2k
JsCreateContext
Limin Zhu edited this page Oct 9, 2015
·
1 revision
Creates a script context for running scripts.
STDAPI_(JsErrorCode)
JsCreateContext(
_In_ JsRuntimeHandle runtime,
_Out_ JsContextRef *newContext);
- runtime: The runtime the script context is being created in.
- newContext: The created script context.
The code JsNoError if the operation succeeded, a failure code otherwise.
Each script context has its own global object that is isolated from all other script contexts.
- Architecture Overview
- Building ChakraCore
- ChakraCore Code Structure
- Contributor Guidance
- Engineering Notes
- Embedding ChakraCore
- Testing ChakraCore
- Getting ChakraCore binaries
- Label Glossary
- Resources
- Roadmap / Release Notes
Want to contribute to this Wiki? Fork it and send a pull request!