Skip to content

Commit

Permalink
Parser
Browse files Browse the repository at this point in the history
- Renamed method to `parseTypeNameOnly()`
  • Loading branch information
deavmi committed May 21, 2024
1 parent 0146228 commit 2098182
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/tlang/compiler/parsing/core.d
Original file line number Diff line number Diff line change
Expand Up @@ -1568,7 +1568,7 @@ public final class Parser
}

// FIXME: This should STILL work pre-dot and post-dot fixeup
private string tryParseTypeName()
private string parseTypeNameOnly()
{
string buildUp;
Token cur;
Expand Down Expand Up @@ -1610,7 +1610,7 @@ public final class Parser


/* TODO: Save type */
string type = tryParseTypeName();
string type = parseTypeNameOnly();
DEBUG(format("tryParseName: %s", type));
DEBUG(lexer.getCurrentToken());

Expand Down

0 comments on commit 2098182

Please sign in to comment.