diff --git a/src/dfmt.d b/src/dfmt.d index c2c0f91..c8c47c2 100644 --- a/src/dfmt.d +++ b/src/dfmt.d @@ -599,33 +599,36 @@ private: newline(); } - int currentTokenLength() - { - switch (current.type) - { - mixin (generateFixedLengthCases()); - default: return cast(int) current.text.length; - } - } - - int nextTokenLength() + int tokenLength(size_t i) pure @safe @nogc { import std.algorithm : countUntil; - if (index + 1 >= tokens.length) - return INVALID_TOKEN_LENGTH; - auto nextToken = tokens[index + 1]; - switch (nextToken.type) + assert (i+1 <= tokens.length); + switch (tokens[i].type) { case tok!"identifier": case tok!"stringLiteral": case tok!"wstringLiteral": case tok!"dstringLiteral": - return cast(int) nextToken.text.countUntil('\n'); + auto c = cast(int) tokens[i].text.countUntil('\n'); + if (c == -1) + return cast(int) tokens[i].text.length; mixin (generateFixedLengthCases()); - default: return -1; + default: return INVALID_TOKEN_LENGTH; } } + int currentTokenLength() pure @safe @nogc + { + return tokenLength(index); + } + + int nextTokenLength() pure @safe @nogc + { + if (index + 1 >= tokens.length) + return INVALID_TOKEN_LENGTH; + return tokenLength(index + 1); + } + ref current() const @property in { diff --git a/tests/guessnumber.d.ref b/tests/guessnumber.d.ref index 071f7e4..8304502 100644 --- a/tests/guessnumber.d.ref +++ b/tests/guessnumber.d.ref @@ -3,8 +3,8 @@ import std.stdio, std.random, std.typecons, std.conv, std.string, std.range; void main() { immutable interval = tuple(1, 100); - writefln("Guess my target number that is between " ~ "%d and %d (inclusive).\n", - interval[]); + writefln("Guess my target number that is between " + ~ "%d and %d (inclusive).\n", interval[]); immutable target = uniform!"[]"(interval[]); foreach (immutable i; sequence!q{n}) {