Skip to content

Commit

Permalink
Merge branch 'typedef-fixes'
Browse files Browse the repository at this point in the history
Fixes #76
  • Loading branch information
nene committed Oct 26, 2024
2 parents 2db61f2 + 3385dac commit f79d076
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions src/cst/Function.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ export interface CreateFunctionStmt extends BaseNode {
name: EntityName;
params: ParenExpr<ListExpr<FunctionParam>>;
clauses: CreateFunctionClause[];
behaviorKw?: Keyword<"RESTRICT">;
}

export interface FunctionParam extends BaseNode {
Expand Down Expand Up @@ -205,7 +204,6 @@ export interface ResetParameterClause extends BaseNode {
export interface ResetAllParametersClause extends BaseNode {
type: "reset_all_parameters_clause";
resetAllKw: [Keyword<"RESET">, Keyword<"ALL">];
name: Identifier;
}

export interface DropFunctionStmt extends BaseNode {
Expand Down
2 changes: 1 addition & 1 deletion src/parser.pegjs
Original file line number Diff line number Diff line change
Expand Up @@ -3795,7 +3795,7 @@ reset_parameter_clause
}

reset_all_parameters_clause
= kw:(RESET __ ALL __) {
= kw:(RESET __ ALL) {
return loc({
type: "reset_all_parameters_clause",
resetAllKw: read(kw),
Expand Down

0 comments on commit f79d076

Please sign in to comment.