mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
37 lines
874 B
Typst
37 lines
874 B
Typst
// Test WebAssembly plugins.
|
|
// Ref: false
|
|
|
|
---
|
|
#let p = plugin("/assets/plugins/hello.wasm")
|
|
#test(p.hello(), bytes("Hello from wasm!!!"))
|
|
#test(p.double_it(bytes("hey!")), bytes("hey!.hey!"))
|
|
#test(
|
|
p.shuffle(bytes("value1"), bytes("value2"), bytes("value3")),
|
|
bytes("value3-value1-value2"),
|
|
)
|
|
|
|
---
|
|
#let p = plugin("/assets/plugins/hello.wasm")
|
|
|
|
// Error: 2-20 plugin function takes 0 arguments, but 1 was given
|
|
#p.hello(bytes(""))
|
|
|
|
---
|
|
#let p = plugin("/assets/plugins/hello.wasm")
|
|
|
|
// Error: 10-14 expected bytes, found boolean
|
|
// Error: 27-29 expected bytes, found integer
|
|
#p.hello(true, bytes(()), 10)
|
|
|
|
---
|
|
#let p = plugin("/assets/plugins/hello.wasm")
|
|
|
|
// Error: 2-17 plugin errored with: This is an `Err`
|
|
#p.returns_err()
|
|
|
|
---
|
|
#let p = plugin("/assets/plugins/hello.wasm")
|
|
|
|
// Error: 2-16 plugin panicked: wasm `unreachable` instruction executed
|
|
#p.will_panic()
|