(node *Node)
| 1027 | } |
| 1028 | |
| 1029 | func IsStatic(node *Node) bool { |
| 1030 | // https://tc39.es/ecma262/#sec-static-semantics-isstatic |
| 1031 | return IsClassElement(node) && HasStaticModifier(node) || IsClassStaticBlockDeclaration(node) |
| 1032 | } |
| 1033 | |
| 1034 | func CanHaveSymbol(node *Node) bool { |
| 1035 | switch node.Kind { |
no test coverage detected