Skip to content

Commit

Permalink
Breaking: update keys (#4)
Browse files Browse the repository at this point in the history
* remove DirectiveStatement and ModuleSpecifier
* add JSX stuff
* add experimental stuff
  • Loading branch information
mysticatea committed Dec 16, 2017
1 parent 1888d38 commit 1f6bd38
Showing 1 changed file with 44 additions and 2 deletions.
46 changes: 44 additions & 2 deletions lib/visitor-keys.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@
"label"
],
"DebuggerStatement": [],
"DirectiveStatement": [],
"DoWhileStatement": [
"body",
"test"
Expand All @@ -84,6 +83,12 @@
"ExpressionStatement": [
"expression"
],
"ExperimentalRestProperty": [
"argument"
],
"ExperimentalSpreadProperty": [
"argument"
],
"ForStatement": [
"init",
"test",
Expand Down Expand Up @@ -130,6 +135,44 @@
"imported",
"local"
],
"JSXAttribute": [
"name",
"value"
],
"JSXClosingElement": [
"name"
],
"JSXElement": [
"openingElement",
"children",
"closingElement"
],
"JSXEmptyExpression": [],
"JSXExpressionContainer": [
"expression"
],
"JSXIdentifier": [],
"JSXMemberExpression": [
"object",
"property"
],
"JSXNamespacedName": [
"namespace",
"name"
],
"JSXOpeningElement": [
"name",
"attributes"
],
"JSXSpreadAttribute": [
"argument"
],
"JSXText": [],
"JSXFragment": [
"openingFragment",
"children",
"closingFragment"
],
"Literal": [],
"LabeledStatement": [
"label",
Expand All @@ -151,7 +194,6 @@
"key",
"value"
],
"ModuleSpecifier": [],
"NewExpression": [
"callee",
"arguments"
Expand Down

0 comments on commit 1f6bd38

Please sign in to comment.