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