Skip to content

Commit

Permalink
newls
Browse files Browse the repository at this point in the history
  • Loading branch information
maxdeliso committed Mar 8, 2025
1 parent a8227a8 commit 26b89b1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/parser/tripLang.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ export function parseTripLang(input: string): TripLangProgram {
}

return { kind: 'program', terms };
}
}
2 changes: 1 addition & 1 deletion test/parser/inputs/combinatorY.trip
Original file line number Diff line number Diff line change
@@ -1 +1 @@
combinator Y = S(K(SII))(S(S(KS)K)(K(SII)))
combinator Y = S(K(SII))(S(S(KS)K)(K(SII)))
2 changes: 1 addition & 1 deletion test/parser/inputs/polyId.trip
Original file line number Diff line number Diff line change
@@ -1 +1 @@
poly id = Λa. λx:a. x
poly id = Λa. λx:a. x
2 changes: 1 addition & 1 deletion test/parser/inputs/untypedDouble.trip
Original file line number Diff line number Diff line change
@@ -1 +1 @@
untyped double = λx. x x
untyped double = λx. x x
2 changes: 1 addition & 1 deletion test/parser/untyped.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ describe('Parser Tests', () => {
});
});
});
});
});

0 comments on commit 26b89b1

Please sign in to comment.