We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b27d77 commit d5f42eaCopy full SHA for d5f42ea
src/resolver.ts
@@ -155,11 +155,9 @@ export class Resolver implements StmtNS.Visitor<void>, ExprNS.Visitor<void> {
155
// math constants
156
["math_pi", new Token(TokenType.NAME, "math_pi", 0, 0, 0)],
157
["math_e", new Token(TokenType.NAME, "math_e", 0, 0, 0)],
158
- ["math_ln10", new Token(TokenType.NAME, "math_ln10", 0, 0, 0)],
159
- ["math_ln2", new Token(TokenType.NAME, "math_ln2", 0, 0, 0)],
160
- ["math_log10e", new Token(TokenType.NAME, "math_log10e", 0, 0, 0)],
161
- ["math_sqrt1_2", new Token(TokenType.NAME, "math_sqrt1_2", 0, 0, 0)],
162
- ["math_sqrt2", new Token(TokenType.NAME, "math_sqrt2", 0, 0, 0)],
+ ["math_inf", new Token(TokenType.NAME, "math_inf", 0, 0, 0)],
+ ["math_nan", new Token(TokenType.NAME, "math_nan", 0, 0, 0)],
+ ["math_tau", new Token(TokenType.NAME, "math_tau", 0, 0, 0)],
163
164
// math library
165
["math_abs", new Token(TokenType.NAME, "math_abs", 0, 0, 0)],
0 commit comments