Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

visitor-keys.json 4.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. {
  2. "AssignmentExpression": [
  3. "left",
  4. "right"
  5. ],
  6. "AssignmentPattern": [
  7. "left",
  8. "right"
  9. ],
  10. "ArrayExpression": [
  11. "elements"
  12. ],
  13. "ArrayPattern": [
  14. "elements"
  15. ],
  16. "ArrowFunctionExpression": [
  17. "params",
  18. "body"
  19. ],
  20. "AwaitExpression": [
  21. "argument"
  22. ],
  23. "BlockStatement": [
  24. "body"
  25. ],
  26. "BinaryExpression": [
  27. "left",
  28. "right"
  29. ],
  30. "BreakStatement": [
  31. "label"
  32. ],
  33. "CallExpression": [
  34. "callee",
  35. "arguments"
  36. ],
  37. "CatchClause": [
  38. "param",
  39. "body"
  40. ],
  41. "ClassBody": [
  42. "body"
  43. ],
  44. "ClassDeclaration": [
  45. "id",
  46. "superClass",
  47. "body"
  48. ],
  49. "ClassExpression": [
  50. "id",
  51. "superClass",
  52. "body"
  53. ],
  54. "ConditionalExpression": [
  55. "test",
  56. "consequent",
  57. "alternate"
  58. ],
  59. "ContinueStatement": [
  60. "label"
  61. ],
  62. "DebuggerStatement": [],
  63. "DoWhileStatement": [
  64. "body",
  65. "test"
  66. ],
  67. "EmptyStatement": [],
  68. "ExportAllDeclaration": [
  69. "source"
  70. ],
  71. "ExportDefaultDeclaration": [
  72. "declaration"
  73. ],
  74. "ExportNamedDeclaration": [
  75. "declaration",
  76. "specifiers",
  77. "source"
  78. ],
  79. "ExportSpecifier": [
  80. "exported",
  81. "local"
  82. ],
  83. "ExpressionStatement": [
  84. "expression"
  85. ],
  86. "ExperimentalRestProperty": [
  87. "argument"
  88. ],
  89. "ExperimentalSpreadProperty": [
  90. "argument"
  91. ],
  92. "ForStatement": [
  93. "init",
  94. "test",
  95. "update",
  96. "body"
  97. ],
  98. "ForInStatement": [
  99. "left",
  100. "right",
  101. "body"
  102. ],
  103. "ForOfStatement": [
  104. "left",
  105. "right",
  106. "body"
  107. ],
  108. "FunctionDeclaration": [
  109. "id",
  110. "params",
  111. "body"
  112. ],
  113. "FunctionExpression": [
  114. "id",
  115. "params",
  116. "body"
  117. ],
  118. "Identifier": [],
  119. "IfStatement": [
  120. "test",
  121. "consequent",
  122. "alternate"
  123. ],
  124. "ImportDeclaration": [
  125. "specifiers",
  126. "source"
  127. ],
  128. "ImportDefaultSpecifier": [
  129. "local"
  130. ],
  131. "ImportNamespaceSpecifier": [
  132. "local"
  133. ],
  134. "ImportSpecifier": [
  135. "imported",
  136. "local"
  137. ],
  138. "JSXAttribute": [
  139. "name",
  140. "value"
  141. ],
  142. "JSXClosingElement": [
  143. "name"
  144. ],
  145. "JSXElement": [
  146. "openingElement",
  147. "children",
  148. "closingElement"
  149. ],
  150. "JSXEmptyExpression": [],
  151. "JSXExpressionContainer": [
  152. "expression"
  153. ],
  154. "JSXIdentifier": [],
  155. "JSXMemberExpression": [
  156. "object",
  157. "property"
  158. ],
  159. "JSXNamespacedName": [
  160. "namespace",
  161. "name"
  162. ],
  163. "JSXOpeningElement": [
  164. "name",
  165. "attributes"
  166. ],
  167. "JSXSpreadAttribute": [
  168. "argument"
  169. ],
  170. "JSXText": [],
  171. "JSXFragment": [
  172. "openingFragment",
  173. "children",
  174. "closingFragment"
  175. ],
  176. "Literal": [],
  177. "LabeledStatement": [
  178. "label",
  179. "body"
  180. ],
  181. "LogicalExpression": [
  182. "left",
  183. "right"
  184. ],
  185. "MemberExpression": [
  186. "object",
  187. "property"
  188. ],
  189. "MetaProperty": [
  190. "meta",
  191. "property"
  192. ],
  193. "MethodDefinition": [
  194. "key",
  195. "value"
  196. ],
  197. "NewExpression": [
  198. "callee",
  199. "arguments"
  200. ],
  201. "ObjectExpression": [
  202. "properties"
  203. ],
  204. "ObjectPattern": [
  205. "properties"
  206. ],
  207. "Program": [
  208. "body"
  209. ],
  210. "Property": [
  211. "key",
  212. "value"
  213. ],
  214. "RestElement": [
  215. "argument"
  216. ],
  217. "ReturnStatement": [
  218. "argument"
  219. ],
  220. "SequenceExpression": [
  221. "expressions"
  222. ],
  223. "SpreadElement": [
  224. "argument"
  225. ],
  226. "Super": [],
  227. "SwitchStatement": [
  228. "discriminant",
  229. "cases"
  230. ],
  231. "SwitchCase": [
  232. "test",
  233. "consequent"
  234. ],
  235. "TaggedTemplateExpression": [
  236. "tag",
  237. "quasi"
  238. ],
  239. "TemplateElement": [],
  240. "TemplateLiteral": [
  241. "quasis",
  242. "expressions"
  243. ],
  244. "ThisExpression": [],
  245. "ThrowStatement": [
  246. "argument"
  247. ],
  248. "TryStatement": [
  249. "block",
  250. "handler",
  251. "finalizer"
  252. ],
  253. "UnaryExpression": [
  254. "argument"
  255. ],
  256. "UpdateExpression": [
  257. "argument"
  258. ],
  259. "VariableDeclaration": [
  260. "declarations"
  261. ],
  262. "VariableDeclarator": [
  263. "id",
  264. "init"
  265. ],
  266. "WhileStatement": [
  267. "test",
  268. "body"
  269. ],
  270. "WithStatement": [
  271. "object",
  272. "body"
  273. ],
  274. "YieldExpression": [
  275. "argument"
  276. ]
  277. }