hasmer
|
Represents the options to be used when decompiling. More...
Properties | |
bool | OmitPrototypeFromConstructorInvocation [get, set] |
True if the class prototype should be omitted as the first parameter to a construction invocation, otherwise false. As an example, when this is true: More... | |
bool | OmitThisFromFunctionInvocation [get, set] |
True if the "this" parameter should be omitted as the first parameter to a function invocation, otherwise false. As an example, when this is true: More... | |
bool | OmitExplicitGlobal [get, set] |
True if the "global" identifier should be omitted as a prefix to global field references. As an example, when this is true: More... | |
Represents the options to be used when decompiling.
|
getset |
True if the "global" identifier should be omitted as a prefix to global field references.
As an example, when this is true:
Promise.resolve(false)
When this is false:
global.Promise.resolve(false)
|
getset |
True if the class prototype should be omitted as the first parameter to a construction invocation, otherwise false.
As an example, when this is true:
new Promise(handler)
When this is false:
new Promise(Promise.prototype, handler)
|
getset |
True if the "this" parameter should be omitted as the first parameter to a function invocation, otherwise false.
As an example, when this is true:
Promise.resolve(false)
When this is false:
Promise.resolve(Promise, false)