-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Interpret PrefixExpr of literal ints and floats into ASG
This correctly parses and analyzes to ASG some expressions representing negative numeric literals. At the same time it does not incorrectly parse binary expressions such as `a-1.23` The following (should!) enter the ASG correctly: `1.23;` `-1.23;` `- 1.23;` `1;` `-1;` `- 1`; Some tests for all of the items above (and the binary expression) are included in this commit. There are a few ugly things. But maybe they can be fixed later. This PR also should make it easier to do anoether PR to handle variables with unary minus. The access (API) to the ASG, tries to be backward compatible. Probably could used a simple redesign. * A new accessor `sign()` is added to `IntLiteral`. For positive values `sign()` returns `true`, for negative `false`. * `FloatLiteral` is still a `String` and the possible `-` sign is formatted into the string. We talked about storing an f64 here instead. Probably would be a good option. But the present API is backward compatible.
- Loading branch information
Showing
9 changed files
with
211 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters