(parser)
| 3700 | this.args = { value: root }; |
| 3701 | } |
| 3702 | static parse(parser) { |
| 3703 | if (!parser.matchToken("not")) return; |
| 3704 | var root = parser.requireElement("unaryExpression"); |
| 3705 | return new _LogicalNot(root); |
| 3706 | } |
| 3707 | resolve(context, { value: val }) { |
| 3708 | return !val; |
| 3709 | } |
nothing calls this directly
no test coverage detected