We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 846811e commit 56f44beCopy full SHA for 56f44be
2 files changed
src/slang-nodes/PrefixExpression.ts
@@ -30,7 +30,7 @@ export class PrefixExpression extends SlangNode {
30
this.updateMetadata(this.operand);
31
32
if (this.operator === 'delete') {
33
- this.operator = `${this.operator} `;
+ this.operator = 'delete ';
34
}
35
36
src/slang-utils/create-hug-function.ts
@@ -5,7 +5,7 @@ import { TupleValue } from '../slang-nodes/TupleValue.js';
5
import { TerminalNode } from '../slang-nodes/TerminalNode.js';
6
import { isBinaryOperation } from './is-binary-operation.js';
7
8
-import type { Expression } from '../slang-nodes/Expression.js';
+import type { Expression } from '../slang-nodes/Expression.ts';
9
10
export function createHugFunction(
11
huggableOperators: string[]
0 commit comments