Skip to content

Commit

Permalink
clean code
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan carlos Vallejo salazar authored and Juan carlos Vallejo salazar committed Jul 24, 2024
1 parent bed1a9b commit 69de733
Show file tree
Hide file tree
Showing 9 changed files with 2 additions and 9 deletions.
5 changes: 0 additions & 5 deletions build/native_assets/macos/native_assets.yaml

This file was deleted.

Binary file not shown.
Binary file removed build/unit_test_assets/AssetManifest.bin
Binary file not shown.
1 change: 0 additions & 1 deletion build/unit_test_assets/AssetManifest.json

This file was deleted.

1 change: 0 additions & 1 deletion build/unit_test_assets/FontManifest.json

This file was deleted.

Binary file removed build/unit_test_assets/NOTICES.Z
Binary file not shown.
Binary file removed build/unit_test_assets/shaders/ink_sparkle.frag
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/src/parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ class Lexer {
/// Tokenizes a given input string.
/// Returns a list of [Token] in infix notation.
List<Token> tokenize(String inputString,
{ bool multiplyWithParentheses=false}) {
{bool multiplyWithParentheses = false}) {
final List<Token> tempTokenStream = <Token>[];
final String clearedString = inputString.replaceAll(' ', '').trim();
final RuneIterator iter = clearedString.runes.iterator;
Expand Down
2 changes: 1 addition & 1 deletion test/parser_test_set.dart
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class ParserTests extends TestSet {
'(5)(5)': Number(5) * Number(5),
'(-2.0)5': -Number(2.0) * Number(5),
};
parameterized(cases,multiplyWithParentheses: true);
parameterized(cases, multiplyWithParentheses: true);
}

void parseDivision() {
Expand Down

0 comments on commit 69de733

Please sign in to comment.