QuickJsRuntime class

Inheritance
Available extensions

Constructors

QuickJsRuntime(String fileName)

Properties

dartContext ↔ Map<String, dynamic>
getter/setter pairinherited
fileName → String
final
hashCode → int
The hash code for this object.
no setterinherited
jsSetMaxStackSize → void Function(Pointer<JSRuntime>, int)
DLLEXPORT void jsSetMaxStackSize(JSRuntime *rt, size_t stack_size)
final
localContext ↔ Map<String, dynamic>
getter/setter pairinherited
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited

Methods

callFunction(Pointer<NativeType> function, Pointer<NativeType> argument) → JsEvalResult
override
clearXhrPendingCalls() → void

Available on JavascriptRuntime, provided by the JavascriptRuntimeXhrExtension extension

convertValue<T>(JsEvalResult evalResult) → T?
override
dispose() → void
override
enableFetch() → Future<JavascriptRuntime>

Available on JavascriptRuntime, provided by the JavascriptRuntimeFetchExtension extension

enableHandlePromises() → dynamic

Available on JavascriptRuntime, provided by the HandlePromises extension

enableXhr() → JavascriptRuntime

Available on JavascriptRuntime, provided by the JavascriptRuntimeXhrExtension extension

evaluate(String js, {String? sourceUrl}) → JsEvalResult
override
evaluateAsync(String code, {String? sourceUrl}) → Future<JsEvalResult>
override
executePendingJob() → int
override
getEngineInstanceId() → String
override
getPendingXhrCalls() → List?

Available on JavascriptRuntime, provided by the JavascriptRuntimeXhrExtension extension

handlePromise(JsEvalResult value, {Duration? timeout}) → Future<JsEvalResult>

Available on JavascriptRuntime, provided by the HandlePromises extension

hasPendingXhrCalls() → bool

Available on JavascriptRuntime, provided by the JavascriptRuntimeXhrExtension extension

init() → JavascriptRuntime
inherited
initChannelFunctions() → void
override
isFulfilledPromise(int idx) → bool

Available on JavascriptRuntime, provided by the HandlePromises extension

isPendingPromise(int idx) → bool

Available on JavascriptRuntime, provided by the HandlePromises extension

jsonStringify(JsEvalResult jsValue) → String
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
onMessage(String channelName, dynamic fn(dynamic args)) → dynamic
inherited
sendMessage({required String channelName, required List<String> args, String? uuid}) → dynamic
inherited
setInspectable(bool inspectable) → void
override
setupBridge(String channelName, void fn(dynamic args)) → bool
override
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited

Static Methods

convertToValue<T>(Pointer<JSContext> context, JsEvalResult evalResult) → T?
getTypeForJsValue(Pointer<JSValueConst> jsValue) → Type
jsEval(Pointer<JSContext> ctx, String js, {String fileName = 'nofile.js'}) → JsEvalResult