Make Engine::set_XXX chainable.
This commit is contained in:
parent
d151c87687
commit
be040287dc
@ -19,6 +19,7 @@ Enhancements
|
|||||||
* `CallableFunction` is exported under `internals`.
|
* `CallableFunction` is exported under `internals`.
|
||||||
* The `TypeBuilder` type and `CustomType` trait are no longer marked as volatile.
|
* The `TypeBuilder` type and `CustomType` trait are no longer marked as volatile.
|
||||||
* `FuncArgs` is also implemented for arrays.
|
* `FuncArgs` is also implemented for arrays.
|
||||||
|
* `Engine::set_XXX` API can now be chained.
|
||||||
|
|
||||||
|
|
||||||
Version 1.11.0
|
Version 1.11.0
|
||||||
|
@ -68,8 +68,9 @@ impl Engine {
|
|||||||
}
|
}
|
||||||
/// Set whether `if`-expression is allowed.
|
/// Set whether `if`-expression is allowed.
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn set_allow_if_expression(&mut self, enable: bool) {
|
pub fn set_allow_if_expression(&mut self, enable: bool) -> &mut Self {
|
||||||
self.options.set(LangOptions::IF_EXPR, enable);
|
self.options.set(LangOptions::IF_EXPR, enable);
|
||||||
|
self
|
||||||
}
|
}
|
||||||
/// Is `switch` expression allowed?
|
/// Is `switch` expression allowed?
|
||||||
/// Default is `true`.
|
/// Default is `true`.
|
||||||
@ -80,8 +81,9 @@ impl Engine {
|
|||||||
}
|
}
|
||||||
/// Set whether `switch` expression is allowed.
|
/// Set whether `switch` expression is allowed.
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn set_allow_switch_expression(&mut self, enable: bool) {
|
pub fn set_allow_switch_expression(&mut self, enable: bool) -> &mut Self {
|
||||||
self.options.set(LangOptions::SWITCH_EXPR, enable);
|
self.options.set(LangOptions::SWITCH_EXPR, enable);
|
||||||
|
self
|
||||||
}
|
}
|
||||||
/// Are loop expressions allowed?
|
/// Are loop expressions allowed?
|
||||||
/// Default is `true`.
|
/// Default is `true`.
|
||||||
@ -92,8 +94,9 @@ impl Engine {
|
|||||||
}
|
}
|
||||||
/// Set whether loop expressions are allowed.
|
/// Set whether loop expressions are allowed.
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn set_allow_loop_expressions(&mut self, enable: bool) {
|
pub fn set_allow_loop_expressions(&mut self, enable: bool) -> &mut Self {
|
||||||
self.options.set(LangOptions::LOOP_EXPR, enable);
|
self.options.set(LangOptions::LOOP_EXPR, enable);
|
||||||
|
self
|
||||||
}
|
}
|
||||||
/// Is statement-expression allowed?
|
/// Is statement-expression allowed?
|
||||||
/// Default is `true`.
|
/// Default is `true`.
|
||||||
@ -104,8 +107,9 @@ impl Engine {
|
|||||||
}
|
}
|
||||||
/// Set whether statement-expression is allowed.
|
/// Set whether statement-expression is allowed.
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn set_allow_statement_expression(&mut self, enable: bool) {
|
pub fn set_allow_statement_expression(&mut self, enable: bool) -> &mut Self {
|
||||||
self.options.set(LangOptions::STMT_EXPR, enable);
|
self.options.set(LangOptions::STMT_EXPR, enable);
|
||||||
|
self
|
||||||
}
|
}
|
||||||
/// Is anonymous function allowed?
|
/// Is anonymous function allowed?
|
||||||
/// Default is `true`.
|
/// Default is `true`.
|
||||||
@ -122,8 +126,9 @@ impl Engine {
|
|||||||
/// Not available under `no_function`.
|
/// Not available under `no_function`.
|
||||||
#[cfg(not(feature = "no_function"))]
|
#[cfg(not(feature = "no_function"))]
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn set_allow_anonymous_fn(&mut self, enable: bool) {
|
pub fn set_allow_anonymous_fn(&mut self, enable: bool) -> &mut Self {
|
||||||
self.options.set(LangOptions::ANON_FN, enable);
|
self.options.set(LangOptions::ANON_FN, enable);
|
||||||
|
self
|
||||||
}
|
}
|
||||||
/// Is looping allowed?
|
/// Is looping allowed?
|
||||||
/// Default is `true`.
|
/// Default is `true`.
|
||||||
@ -134,8 +139,9 @@ impl Engine {
|
|||||||
}
|
}
|
||||||
/// Set whether looping is allowed.
|
/// Set whether looping is allowed.
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn set_allow_looping(&mut self, enable: bool) {
|
pub fn set_allow_looping(&mut self, enable: bool) -> &mut Self {
|
||||||
self.options.set(LangOptions::LOOPING, enable);
|
self.options.set(LangOptions::LOOPING, enable);
|
||||||
|
self
|
||||||
}
|
}
|
||||||
/// Is variables shadowing allowed?
|
/// Is variables shadowing allowed?
|
||||||
/// Default is `true`.
|
/// Default is `true`.
|
||||||
@ -146,8 +152,9 @@ impl Engine {
|
|||||||
}
|
}
|
||||||
/// Set whether variables shadowing is allowed.
|
/// Set whether variables shadowing is allowed.
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn set_allow_shadowing(&mut self, enable: bool) {
|
pub fn set_allow_shadowing(&mut self, enable: bool) -> &mut Self {
|
||||||
self.options.set(LangOptions::SHADOW, enable);
|
self.options.set(LangOptions::SHADOW, enable);
|
||||||
|
self
|
||||||
}
|
}
|
||||||
/// Is strict variables mode enabled?
|
/// Is strict variables mode enabled?
|
||||||
/// Default is `false`.
|
/// Default is `false`.
|
||||||
@ -158,8 +165,9 @@ impl Engine {
|
|||||||
}
|
}
|
||||||
/// Set whether strict variables mode is enabled.
|
/// Set whether strict variables mode is enabled.
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn set_strict_variables(&mut self, enable: bool) {
|
pub fn set_strict_variables(&mut self, enable: bool) -> &mut Self {
|
||||||
self.options.set(LangOptions::STRICT_VAR, enable);
|
self.options.set(LangOptions::STRICT_VAR, enable);
|
||||||
|
self
|
||||||
}
|
}
|
||||||
/// Raise error if an object map property does not exist?
|
/// Raise error if an object map property does not exist?
|
||||||
/// Default is `false`.
|
/// Default is `false`.
|
||||||
@ -177,9 +185,10 @@ impl Engine {
|
|||||||
/// Not available under `no_object`.
|
/// Not available under `no_object`.
|
||||||
#[cfg(not(feature = "no_object"))]
|
#[cfg(not(feature = "no_object"))]
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn set_fail_on_invalid_map_property(&mut self, enable: bool) {
|
pub fn set_fail_on_invalid_map_property(&mut self, enable: bool) -> &mut Self {
|
||||||
self.options
|
self.options
|
||||||
.set(LangOptions::FAIL_ON_INVALID_MAP_PROPERTY, enable);
|
.set(LangOptions::FAIL_ON_INVALID_MAP_PROPERTY, enable);
|
||||||
|
self
|
||||||
}
|
}
|
||||||
/// Is fast operators mode enabled?
|
/// Is fast operators mode enabled?
|
||||||
/// Default is `false`.
|
/// Default is `false`.
|
||||||
@ -190,7 +199,8 @@ impl Engine {
|
|||||||
}
|
}
|
||||||
/// Set whether fast operators mode is enabled.
|
/// Set whether fast operators mode is enabled.
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn set_fast_operators(&mut self, enable: bool) {
|
pub fn set_fast_operators(&mut self, enable: bool) -> &mut Self {
|
||||||
self.options.set(LangOptions::FAST_OPS, enable);
|
self.options.set(LangOptions::FAST_OPS, enable);
|
||||||
|
self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user