Trait javascriptcore::prelude::ContextExt
source · [−]pub trait ContextExt: 'static {
Show 14 methods
fn check_syntax(
&self,
code: &str,
mode: CheckSyntaxMode,
uri: &str,
line_number: u32
) -> (CheckSyntaxResult, Exception);
fn clear_exception(&self);
fn evaluate(&self, code: &str) -> Option<Value>;
fn evaluate_with_source_uri(
&self,
code: &str,
uri: &str,
line_number: u32
) -> Option<Value>;
fn exception(&self) -> Option<Exception>;
fn global_object(&self) -> Option<Value>;
fn value(&self, name: &str) -> Option<Value>;
fn virtual_machine(&self) -> Option<VirtualMachine>;
fn pop_exception_handler(&self);
fn push_exception_handler<P: Fn(&Context, &Exception) + 'static>(
&self,
handler: P
);
fn set_value(&self, name: &str, value: &impl IsA<Value>);
fn throw(&self, error_message: &str);
fn throw_exception(&self, exception: &impl IsA<Exception>);
fn throw_with_name(&self, error_name: &str, error_message: &str);
}
Expand description
Required Methods
sourcefn check_syntax(
&self,
code: &str,
mode: CheckSyntaxMode,
uri: &str,
line_number: u32
) -> (CheckSyntaxResult, Exception)
fn check_syntax(
&self,
code: &str,
mode: CheckSyntaxMode,
uri: &str,
line_number: u32
) -> (CheckSyntaxResult, Exception)
Check the given code
in self
for syntax errors. The line_number
is the starting line number in uri
;
the value is one-based so the first line is 1. uri
and line_number
are only used to fill the exception
.
In case of errors exception
will be set to a new Exception
with the details. You can pass None
to
exception
to ignore the error details.
code
a JavaScript script to check
length
length of code
, or -1 if code
is a nul-terminated string
mode
uri
the source URI
line_number
the starting line number
Returns
exception
sourcefn clear_exception(&self)
fn clear_exception(&self)
Clear the uncaught exception in self
if any.
sourcefn evaluate_with_source_uri(
&self,
code: &str,
uri: &str,
line_number: u32
) -> Option<Value>
fn evaluate_with_source_uri(
&self,
code: &str,
uri: &str,
line_number: u32
) -> Option<Value>
Evaluate code
in self
using uri
as the source URI. The line_number
is the starting line number
in uri
; the value is one-based so the first line is 1. uri
and line_number
will be shown in exceptions and
they don’t affect the behavior of the script.
code
a JavaScript script to evaluate
length
length of code
, or -1 if code
is a nul-terminated string
uri
the source URI
line_number
the starting line number
Returns
a Value
representing the last value generated by the script.
sourcefn global_object(&self) -> Option<Value>
fn global_object(&self) -> Option<Value>
sourcefn virtual_machine(&self) -> Option<VirtualMachine>
fn virtual_machine(&self) -> Option<VirtualMachine>
Get the VirtualMachine
where self
was created.
Returns
the VirtualMachine
where the Context
was created.
sourcefn pop_exception_handler(&self)
fn pop_exception_handler(&self)
Remove the last JSCExceptionHandler
previously pushed to self
with
push_exception_handler()
.
sourcefn push_exception_handler<P: Fn(&Context, &Exception) + 'static>(
&self,
handler: P
)
fn push_exception_handler<P: Fn(&Context, &Exception) + 'static>(
&self,
handler: P
)
Push an exception handler in self
. Whenever a JavaScript exception happens in
the Context
, the given handler
will be called. The default JSCExceptionHandler
simply calls throw_exception()
to throw the exception to the Context
.
If you don’t want to catch the exception, but only get notified about it, call
throw_exception()
in handler
like the default one does.
The last exception handler pushed is the only one used by the Context
, use
pop_exception_handler()
to remove it and set the previous one. When handler
is removed from the context, destroy_notify
i called with user_data
as parameter.
handler
a JSCExceptionHandler
destroy_notify
destroy notifier for user_data
sourcefn throw(&self, error_message: &str)
fn throw(&self, error_message: &str)
Throw an exception to self
using the given error message. The created Exception
can be retrieved with exception()
.
error_message
an error message
sourcefn throw_exception(&self, exception: &impl IsA<Exception>)
fn throw_exception(&self, exception: &impl IsA<Exception>)
sourcefn throw_with_name(&self, error_name: &str, error_message: &str)
fn throw_with_name(&self, error_name: &str, error_message: &str)
Throw an exception to self
using the given error name and message. The created Exception
can be retrieved with exception()
.
error_name
the error name
error_message
an error message