initIntrinsic method
void
initIntrinsic({
- bool baseObject = true,
- bool bigDecimal = true,
- bool bigFloat = true,
- bool bigInt = true,
- bool date = true,
- bool eval = true,
- bool json = true,
- bool mapSet = true,
- bool operators = true,
- bool promise = true,
- bool proxy = true,
- bool regexp = true,
- bool regexpCompiler = true,
- bool stringNormalize = true,
- bool typedArrays = true,
Implementation
void initIntrinsic({
bool baseObject = true,
bool bigDecimal = true,
bool bigFloat = true,
bool bigInt = true,
bool date = true,
bool eval = true,
bool json = true,
bool mapSet = true,
bool operators = true,
bool promise = true,
bool proxy = true,
bool regexp = true,
bool regexpCompiler = true,
bool stringNormalize = true,
bool typedArrays = true,
}) {
if (baseObject) {
addIntrinsicBaseObjects();
}
if (bigDecimal) {
addIntrinsicBigDecimal();
}
if (bigFloat) {
addIntrinsicBigFloat();
}
if (bigInt) {
addIntrinsicBigInt();
}
if (date) {
addIntrinsicDate();
}
if (eval) {
addIntrinsicEval();
}
if (json) {
addIntrinsicJSON();
}
if (mapSet) {
addIntrinsicMapSet();
}
if (operators) {
addIntrinsicOperators();
}
if (promise) {
addIntrinsicPromise();
}
if (proxy) {
addIntrinsicProxy();
}
if (regexp) {
addIntrinsicRegExp();
}
if (regexpCompiler) {
addIntrinsicRegExpCompiler();
}
if (stringNormalize) {
addIntrinsicStringNormalize();
}
if (typedArrays) {
addIntrinsicTypedArrays();
}
}