mirror of
https://github.com/darlinghq/darling-JavaScriptCore.git
synced 2024-11-23 04:09:40 +00:00
19 lines
423 B
Plaintext
19 lines
423 B
Plaintext
framework module JavaScriptCore {
|
|
umbrella header "JavaScriptCore.h"
|
|
|
|
export *
|
|
module * {
|
|
export *
|
|
}
|
|
|
|
explicit module JSVirtualMachine {
|
|
// FIXME: 32-bit x86 is a poor way to say "fragile Objective-C ABI"
|
|
requires x86_32
|
|
exclude header "JSValue.h"
|
|
exclude header "JSContext.h"
|
|
exclude header "JSExport.h"
|
|
exclude header "JSManagedValue.h"
|
|
exclude header "JSVirtualMachine.h"
|
|
}
|
|
}
|