* Return `true` if the given expression can be considered a boolean literal, or false otherwise. * * Note that this should also cover the special case of some minified code where `true` and * `false` are replaced by `!0` and `!1` respectively.
(node: TExpression)
| 42 | * `false` are replaced by `!0` and `!1` respectively. |
| 43 | */ |
| 44 | isBooleanLiteral(node: TExpression): boolean; |
| 45 | /** |
| 46 | * Parse the boolean value from the given expression, or throw if it is not a boolean literal. |
| 47 | * |
no outgoing calls
no test coverage detected