Skip to content

Commit 27187f3

Browse files
authored
refactor(ast): convert union types to const arrays (#1733)
1 parent 460d733 commit 27187f3

File tree

4 files changed

+113
-21
lines changed

4 files changed

+113
-21
lines changed

knip.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"project": ["src/**/*.ts"],
55
"ignore": [
66
"src/ast/ast.ts",
7+
"src/ast/ast-constants.ts",
78
"src/config/parseConfig.ts",
89
"src/ast/ast-printer.ts",
910
"src/error/display-to-json.ts",

src/ast/ast-constants.ts

+107
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
import { keys } from "../utils/tricks";
2+
import {
3+
AstAugmentedAssignOperation,
4+
AstBinaryOperation,
5+
AstFunctionAttributeName,
6+
AstNumberBase,
7+
AstUnaryOperation,
8+
ImportType,
9+
} from "./ast";
10+
11+
const augmentedAssignOperationsRecord: Record<
12+
AstAugmentedAssignOperation,
13+
true
14+
> = {
15+
"+": true,
16+
"-": true,
17+
"*": true,
18+
"/": true,
19+
"&&": true,
20+
"||": true,
21+
"%": true,
22+
"|": true,
23+
"<<": true,
24+
">>": true,
25+
"&": true,
26+
"^": true,
27+
};
28+
29+
export const astAugmentedAssignOperations = Object.freeze(
30+
keys(augmentedAssignOperationsRecord),
31+
);
32+
33+
const binaryOperationsRecord: Record<AstBinaryOperation, true> = {
34+
"+": true,
35+
"-": true,
36+
"*": true,
37+
"/": true,
38+
"!=": true,
39+
">": true,
40+
"<": true,
41+
">=": true,
42+
"<=": true,
43+
"==": true,
44+
"&&": true,
45+
"||": true,
46+
"%": true,
47+
"<<": true,
48+
">>": true,
49+
"&": true,
50+
"|": true,
51+
"^": true,
52+
};
53+
54+
export const astBinaryOperations = Object.freeze(keys(binaryOperationsRecord));
55+
56+
const unaryOperationsRecord: Record<AstUnaryOperation, true> = {
57+
"+": true,
58+
"-": true,
59+
"!": true,
60+
"!!": true,
61+
"~": true,
62+
};
63+
64+
export const astUnaryOperations = Object.freeze(keys(unaryOperationsRecord));
65+
66+
const numberBasesRecord: Record<AstNumberBase, true> = {
67+
2: true,
68+
8: true,
69+
10: true,
70+
16: true,
71+
};
72+
73+
export const astNumberBases = Object.freeze(
74+
keys(numberBasesRecord).map(Number),
75+
);
76+
77+
const importTypesRecord: Record<ImportType, true> = {
78+
stdlib: true,
79+
relative: true,
80+
};
81+
82+
export const importTypes = Object.freeze(keys(importTypesRecord));
83+
84+
type ConstantAttributeName = "virtual" | "override" | "abstract";
85+
86+
const constantAttributeNamesRecord: Record<ConstantAttributeName, true> = {
87+
virtual: true,
88+
override: true,
89+
abstract: true,
90+
};
91+
92+
export const astConstantAttributeNames = Object.freeze(
93+
keys(constantAttributeNamesRecord),
94+
);
95+
96+
const functionAttributeNamesRecord: Record<AstFunctionAttributeName, true> = {
97+
mutates: true,
98+
extends: true,
99+
virtual: true,
100+
abstract: true,
101+
override: true,
102+
inline: true,
103+
};
104+
105+
export const astFunctionAttributeNames = Object.freeze(
106+
keys(functionAttributeNamesRecord),
107+
);

src/ast/random.infra.ts

+3-21
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import fc from "fast-check";
22
import * as A from "./ast";
33
import { dummySrcInfo } from "../grammar/src-info";
44
import { diffJson } from "diff";
5+
import { astBinaryOperations, astUnaryOperations } from "./ast-constants";
56

67
/**
78
* An array of reserved words that cannot be used as contract or variable names in tests.
@@ -100,7 +101,7 @@ function randomAstOpUnary(
100101
return dummyAstNode(
101102
fc.record({
102103
kind: fc.constant("op_unary"),
103-
op: fc.constantFrom("+", "-", "!", "!!", "~"),
104+
op: fc.constantFrom(...astUnaryOperations),
104105
operand: operand,
105106
}),
106107
);
@@ -112,26 +113,7 @@ function randomAstOpBinary(
112113
return dummyAstNode(
113114
fc.record({
114115
kind: fc.constant("op_binary"),
115-
op: fc.constantFrom(
116-
"+",
117-
"-",
118-
"*",
119-
"/",
120-
"!=",
121-
">",
122-
"<",
123-
">=",
124-
"<=",
125-
"==",
126-
"&&",
127-
"||",
128-
"%",
129-
"<<",
130-
">>",
131-
"&",
132-
"|",
133-
"^",
134-
),
116+
op: fc.constantFrom(...astBinaryOperations),
135117
left: leftExpression,
136118
right: rightExpression,
137119
}),

src/utils/tricks.ts

+2
Original file line numberDiff line numberDiff line change
@@ -146,3 +146,5 @@ export const singleton = <K extends string | symbol, V>(key: K, value: V) => {
146146
export const entries = Object.entries as <O>(
147147
o: O,
148148
) => { [K in keyof O]: [K, O[K]] }[keyof O][];
149+
150+
export const keys = Object.keys as <O>(o: O) => (keyof O)[];

0 commit comments

Comments
 (0)