Skip to content

Commit f938f70

Browse files
committed
fixing extensions
1 parent 5da487a commit f938f70

40 files changed

Lines changed: 40 additions & 40 deletions

src/slang-nodes/AbicoderPragma.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { AbicoderVersion } from './AbicoderVersion.js';
55
import type * as ast from '@nomicfoundation/slang/ast';
66
import type { AstPath, Doc, ParserOptions } from 'prettier';
77
import type { PrintFunction } from '../types.d.ts';
8-
import type { AstNode } from './types.ts';
8+
import type { AstNode } from './types.d.ts';
99

1010
export class AbicoderPragma extends SlangNode {
1111
readonly kind = NonterminalKind.AbicoderPragma;

src/slang-nodes/AbicoderVersion.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { SlangNode } from './SlangNode.js';
33

44
import type * as ast from '@nomicfoundation/slang/ast';
55
import type { Doc, ParserOptions } from 'prettier';
6-
import type { AstNode } from './types.ts';
6+
import type { AstNode } from './types.d.ts';
77

88
export class AbicoderVersion extends SlangNode {
99
readonly kind = NonterminalKind.AbicoderVersion;

src/slang-nodes/AddressType.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { SlangNode } from './SlangNode.js';
33

44
import type * as ast from '@nomicfoundation/slang/ast';
55
import type { Doc, ParserOptions } from 'prettier';
6-
import type { AstNode } from './types.ts';
6+
import type { AstNode } from './types.d.ts';
77

88
export class AddressType extends SlangNode {
99
readonly kind = NonterminalKind.AddressType;

src/slang-nodes/BreakStatement.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { SlangNode } from './SlangNode.js';
33

44
import type * as ast from '@nomicfoundation/slang/ast';
55
import type { Doc, ParserOptions } from 'prettier';
6-
import type { AstNode } from './types.ts';
6+
import type { AstNode } from './types.d.ts';
77

88
export class BreakStatement extends SlangNode {
99
readonly kind = NonterminalKind.BreakStatement;

src/slang-nodes/ContinueStatement.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { SlangNode } from './SlangNode.js';
33

44
import type * as ast from '@nomicfoundation/slang/ast';
55
import type { Doc, ParserOptions } from 'prettier';
6-
import type { AstNode } from './types.ts';
6+
import type { AstNode } from './types.d.ts';
77

88
export class ContinueStatement extends SlangNode {
99
readonly kind = NonterminalKind.ContinueStatement;

src/slang-nodes/DecimalNumberExpression.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { NumberUnit } from './NumberUnit.js';
66
import type * as ast from '@nomicfoundation/slang/ast';
77
import type { AstPath, Doc, ParserOptions } from 'prettier';
88
import type { PrintFunction } from '../types.d.ts';
9-
import type { AstNode } from './types.ts';
9+
import type { AstNode } from './types.d.ts';
1010

1111
export class DecimalNumberExpression extends SlangNode {
1212
readonly kind = NonterminalKind.DecimalNumberExpression;

src/slang-nodes/ElementaryType.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { TerminalNode } from './TerminalNode.js';
88

99
import type * as ast from '@nomicfoundation/slang/ast';
1010
import type { ParserOptions } from 'prettier';
11-
import type { AstNode } from './types.ts';
11+
import type { AstNode } from './types.d.ts';
1212

1313
export class ElementaryType extends SlangNode {
1414
readonly kind = NonterminalKind.ElementaryType;

src/slang-nodes/SimpleVersionLiteral.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { SlangNode } from './SlangNode.js';
33

44
import type * as ast from '@nomicfoundation/slang/ast';
55
import type { Doc, ParserOptions } from 'prettier';
6-
import type { AstNode } from './types.ts';
6+
import type { AstNode } from './types.d.ts';
77

88
export class SimpleVersionLiteral extends SlangNode {
99
readonly kind = NonterminalKind.SimpleVersionLiteral;

src/slang-nodes/TerminalNode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type {
55
TerminalKind
66
} from '@nomicfoundation/slang/cst';
77
import type { Doc, ParserOptions } from 'prettier';
8-
import type { AstNode } from './types.ts';
8+
import type { AstNode } from './types.d.ts';
99

1010
export class TerminalNode extends SlangNode {
1111
kind: TerminalKind;

src/slang-nodes/ThrowStatement.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { SlangNode } from './SlangNode.js';
33

44
import type * as ast from '@nomicfoundation/slang/ast';
55
import type { Doc, ParserOptions } from 'prettier';
6-
import type { AstNode } from './types.ts';
6+
import type { AstNode } from './types.d.ts';
77

88
export class ThrowStatement extends SlangNode {
99
readonly kind = NonterminalKind.ThrowStatement;

0 commit comments

Comments
 (0)