(node)
| 23063 | } |
| 23064 | |
| 23065 | function toKind(node) { |
| 23066 | if (t.isClassMethod(node) || t.isObjectMethod(node)) { |
| 23067 | if (node.kind === "get" || node.kind === "set") { |
| 23068 | return node.kind; |
| 23069 | } |
| 23070 | } |
| 23071 | |
| 23072 | return "value"; |
| 23073 | } |
| 23074 | |
| 23075 | function push(mutatorMap, node, kind, file, scope) { |
| 23076 | var alias = t.toKeyAlias(node); |