Skip to content

Commit

Permalink
removed dart runtime for solidity + fixed true literal tokens for python
Browse files Browse the repository at this point in the history
  • Loading branch information
codeFather2 committed Sep 24, 2024
1 parent 33fe40f commit 45afcb5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions solidity/SolidityLexer.g4
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ Fallback
: 'fallback'
;

False
FalseLiteral
: 'false'
;

Expand Down Expand Up @@ -369,7 +369,7 @@ Transient
: 'transient'
; // not a real keyword

True
TrueLiteral
: 'true'
;

Expand Down
4 changes: 2 additions & 2 deletions solidity/SolidityParser.g4
Original file line number Diff line number Diff line change
Expand Up @@ -533,8 +533,8 @@ literalWithSubDenomination
;

boolLiteral
: True
| False
: TrueLiteral
| FalseLiteral
;

/**
Expand Down
2 changes: 1 addition & 1 deletion solidity/desc.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8" ?>
<desc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../_scripts/desc.xsd">
<targets>CSharp;Cpp;Dart;Go;Java;JavaScript;PHP;Python3;TypeScript;Antlr4ng</targets>
<targets>CSharp;Cpp;Go;Java;JavaScript;PHP;Python3;TypeScript;Antlr4ng</targets>
</desc>

0 comments on commit 45afcb5

Please sign in to comment.