Skip to content

Commit

Permalink
Remove completed TODO items
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybaloney committed Jul 22, 2024
1 parent 9948f6e commit b3e8fd9
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,12 @@ from close in Character.EqualTo('\'')
public static TokenListParser<PythonSignatureTokens.PythonSignatureToken, PythonConstant> HexidecimalIntegerConstantTokenizer { get; } =
Token.EqualTo(PythonSignatureTokens.PythonSignatureToken.HexidecimalInteger)
.Apply(ConstantParsers.HexidecimalConstantParser)
// TODO: Emit as a hexidecimal literal
.Select(d => new PythonConstant { Type = PythonConstant.ConstantType.HexidecimalInteger, IntegerValue = (long)d })
.Named("Hexidecimal Integer Constant");

public static TokenListParser<PythonSignatureTokens.PythonSignatureToken, PythonConstant> BinaryIntegerConstantTokenizer { get; } =
Token.EqualTo(PythonSignatureTokens.PythonSignatureToken.BinaryInteger)
.Apply(ConstantParsers.BinaryConstantParser)
// TODO: Emit as a binary literal
.Select(d => new PythonConstant { Type = PythonConstant.ConstantType.BinaryInteger, IntegerValue = (long)d })
.Named("Binary Integer Constant");

Expand Down

0 comments on commit b3e8fd9

Please sign in to comment.