@@ -20,7 +20,6 @@ import type { CallOptionsExpression } from './CallOptionsExpression.ts';
2020import type { CatchClause } from './CatchClause.ts' ;
2121import type { CatchClauseError } from './CatchClauseError.ts' ;
2222import type { CatchClauses } from './CatchClauses.ts' ;
23- import type { ComparisonExpression } from './ComparisonExpression.ts' ;
2423import type { ConditionalExpression } from './ConditionalExpression.ts' ;
2524import type { ConstantDefinition } from './ConstantDefinition.ts' ;
2625import type { ConstructorAttribute } from './ConstructorAttribute.ts' ;
@@ -80,6 +79,7 @@ import type { ImportDeconstructionSymbols } from './ImportDeconstructionSymbols.
8079import type { ImportDirective } from './ImportDirective.ts' ;
8180import type { IndexAccessEnd } from './IndexAccessEnd.ts' ;
8281import type { IndexAccessExpression } from './IndexAccessExpression.ts' ;
82+ import type { InequalityExpression } from './InequalityExpression.ts' ;
8383import type { InheritanceSpecifier } from './InheritanceSpecifier.ts' ;
8484import type { InheritanceType } from './InheritanceType.ts' ;
8585import type { InheritanceTypes } from './InheritanceTypes.ts' ;
@@ -190,7 +190,6 @@ import type { YulArguments } from './YulArguments.ts';
190190import type { YulAssignmentOperator } from './YulAssignmentOperator.ts' ;
191191import type { YulBlock } from './YulBlock.ts' ;
192192import type { YulBreakStatement } from './YulBreakStatement.ts' ;
193- import type { YulBuiltInFunction } from './YulBuiltInFunction.ts' ;
194193import type { YulColonAndEqual } from './YulColonAndEqual.ts' ;
195194import type { YulContinueStatement } from './YulContinueStatement.ts' ;
196195import type { YulDefaultCase } from './YulDefaultCase.ts' ;
@@ -321,7 +320,7 @@ export type StrictAstNode =
321320 | OrExpression
322321 | AndExpression
323322 | EqualityExpression
324- | ComparisonExpression
323+ | InequalityExpression
325324 | BitwiseOrExpression
326325 | BitwiseXorExpression
327326 | BitwiseAndExpression
@@ -409,7 +408,6 @@ export type StrictAstNode =
409408 | YulAssignmentOperator
410409 | YulSwitchCase
411410 | YulExpression
412- | YulBuiltInFunction
413411 | YulLiteral
414412 | SourceUnitMembers
415413 | VersionExpressionSet
0 commit comments