-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruntime.ss
More file actions
20 lines (17 loc) · 711 Bytes
/
runtime.ss
File metadata and controls
20 lines (17 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#lang scheme/base
(require "private/runtime/exceptions.ss"
"private/runtime/runtime.ss"
"private/runtime/standard-library.ss"
"private/runtime/namespace.ss")
(provide (all-from-out "private/runtime/exceptions.ss"))
(provide global-object install-standard-library!)
(provide make-js-namespace reset-js-namespace!)
(provide object? ;(struct-out object)
array? ;(struct-out array)
function?
wrapper?
(struct-out attributed)
ref? set-ref! delete-ref! deref)
(provide bit-flag-set? READ-ONLY? DONT-ENUM? DONT-DELETE?)
(provide has-property? has-own-property? has-attribute?
object-get object-set! object-delete! object-keys-stream)