(node *Node)
| 1023 | } |
| 1024 | |
| 1025 | func HasStaticModifier(node *Node) bool { |
| 1026 | return HasSyntacticModifier(node, ModifierFlagsStatic) |
| 1027 | } |
| 1028 | |
| 1029 | func IsStatic(node *Node) bool { |
| 1030 | // https://tc39.es/ecma262/#sec-static-semantics-isstatic |
no test coverage detected