source: trip-planner-front/node_modules/@babel/types/lib/definitions/index.js@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 2.2 KB
Line 
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6Object.defineProperty(exports, "VISITOR_KEYS", {
7 enumerable: true,
8 get: function () {
9 return _utils.VISITOR_KEYS;
10 }
11});
12Object.defineProperty(exports, "ALIAS_KEYS", {
13 enumerable: true,
14 get: function () {
15 return _utils.ALIAS_KEYS;
16 }
17});
18Object.defineProperty(exports, "FLIPPED_ALIAS_KEYS", {
19 enumerable: true,
20 get: function () {
21 return _utils.FLIPPED_ALIAS_KEYS;
22 }
23});
24Object.defineProperty(exports, "NODE_FIELDS", {
25 enumerable: true,
26 get: function () {
27 return _utils.NODE_FIELDS;
28 }
29});
30Object.defineProperty(exports, "BUILDER_KEYS", {
31 enumerable: true,
32 get: function () {
33 return _utils.BUILDER_KEYS;
34 }
35});
36Object.defineProperty(exports, "DEPRECATED_KEYS", {
37 enumerable: true,
38 get: function () {
39 return _utils.DEPRECATED_KEYS;
40 }
41});
42Object.defineProperty(exports, "NODE_PARENT_VALIDATIONS", {
43 enumerable: true,
44 get: function () {
45 return _utils.NODE_PARENT_VALIDATIONS;
46 }
47});
48Object.defineProperty(exports, "PLACEHOLDERS", {
49 enumerable: true,
50 get: function () {
51 return _placeholders.PLACEHOLDERS;
52 }
53});
54Object.defineProperty(exports, "PLACEHOLDERS_ALIAS", {
55 enumerable: true,
56 get: function () {
57 return _placeholders.PLACEHOLDERS_ALIAS;
58 }
59});
60Object.defineProperty(exports, "PLACEHOLDERS_FLIPPED_ALIAS", {
61 enumerable: true,
62 get: function () {
63 return _placeholders.PLACEHOLDERS_FLIPPED_ALIAS;
64 }
65});
66exports.TYPES = void 0;
67
68var _toFastProperties = require("to-fast-properties");
69
70require("./core");
71
72require("./flow");
73
74require("./jsx");
75
76require("./misc");
77
78require("./experimental");
79
80require("./typescript");
81
82var _utils = require("./utils");
83
84var _placeholders = require("./placeholders");
85
86_toFastProperties(_utils.VISITOR_KEYS);
87
88_toFastProperties(_utils.ALIAS_KEYS);
89
90_toFastProperties(_utils.FLIPPED_ALIAS_KEYS);
91
92_toFastProperties(_utils.NODE_FIELDS);
93
94_toFastProperties(_utils.BUILDER_KEYS);
95
96_toFastProperties(_utils.DEPRECATED_KEYS);
97
98_toFastProperties(_placeholders.PLACEHOLDERS_ALIAS);
99
100_toFastProperties(_placeholders.PLACEHOLDERS_FLIPPED_ALIAS);
101
102const TYPES = Object.keys(_utils.VISITOR_KEYS).concat(Object.keys(_utils.FLIPPED_ALIAS_KEYS)).concat(Object.keys(_utils.DEPRECATED_KEYS));
103exports.TYPES = TYPES;
Note: See TracBrowser for help on using the repository browser.