(parser)
| 3978 | this.args = { value: root }; |
| 3979 | } |
| 3980 | static parse(parser) { |
| 3981 | if (!parser.matchToken("not")) return; |
| 3982 | var root = parser.requireElement("unaryExpression"); |
| 3983 | return new _LogicalNot(root); |
| 3984 | } |
| 3985 | resolve(context, { value: val }) { |
| 3986 | return !val; |
| 3987 | } |
nothing calls this directly
no test coverage detected