Skip to content

Commit

Permalink
Addressing review
Browse files Browse the repository at this point in the history
  • Loading branch information
ACassimiro committed Sep 5, 2024
1 parent a85e903 commit 6d8c04e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
1 change: 0 additions & 1 deletion rust-semantics/expression/literals.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,5 +94,4 @@ module RUST-EXPRESSION-INTEGER-LITERALS
rule startsWith(_, _) => false [owise]
endmodule
```
6 changes: 0 additions & 6 deletions rust-semantics/preprocessing/constants.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ module RUST-CONSTANTS
rule
(const Name:Identifier : T:Type = V:Value;):ConstantItem:KItem
=> setConstant(Name, implicitCast(V, T))
// rule
// (const Name:Identifier : _:Type = V:Bool;):ConstantItem:KItem
// => setConstant(Name, V) [priority(50)]
rule
<k>
Expand All @@ -28,7 +24,5 @@ module RUST-CONSTANTS
</constant>
...
</constants>
endmodule
```
2 changes: 1 addition & 1 deletion rust-semantics/rust-common-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ https://doc.rust-lang.org/reference/items/extern-crates.html
| ByteLiteral | ByteStringLiteral | RawByteStringLiteral
| CStringLiteral | RawCStringLiteral
| IntegerLiteral | FloatLiteral
syntax CharLiteral ::= "TODO: not needed yet, not implementing"
// TODO: Not implemented properly
syntax StringLiteral ::= String
Expand Down

0 comments on commit 6d8c04e

Please sign in to comment.