mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-28 17:04:34 +00:00
16 lines
330 B
Odin
16 lines
330 B
Odin
#+build js
|
|
package runtime
|
|
|
|
init_default_context_for_js: Context
|
|
@(init, private="file")
|
|
init_default_context :: proc "contextless" () {
|
|
__init_context(&init_default_context_for_js)
|
|
}
|
|
|
|
@(export)
|
|
@(link_name="default_context_ptr")
|
|
default_context_ptr :: proc "contextless" () -> ^Context {
|
|
return &init_default_context_for_js
|
|
}
|
|
|