-
Notifications
You must be signed in to change notification settings - Fork 16
add test case #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
- Add packet.yaml - Generate a new cabal file
Add more test cases for the CoreErlang parser
remove shouldBe (Atom "jsx")
Show parse failure
| h <- openFile fp ReadMode | ||
| hSetEncoding h utf8 | ||
| hGetContents h | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
File handle leak.
hClose h
Alternatively, maybe switching all Strings to hackage.haskell.org/package/text and use T.readFile
|
A new language targeting CoreErlang + BEAM! Cool! It looks like the PDF specification is very out of date. The main low-level specification is now core_parse.yrl and cerl.erl for high-level. The Syntax.hs structures are missing many |
Improve the AST parser
Remove the 'testParser' context
Update the Hello.core file
Rename 'Lambda' to 'Lam'
Fix errors, add VarMap, UpdateMap constructor
* fix(bug): fix broken atom
...