This commit is contained in:
parent
5da2a71a67
commit
7961bfc15f
|
@ -1 +1 @@
|
||||||
Subproject commit 6f98e085edfdabe571fd57164370d3f27f452c52
|
Subproject commit 1e24b41392c1363fc52a3d079debde965771be3e
|
5
makefile
5
makefile
|
@ -1,7 +1,6 @@
|
||||||
SRC := $(shell find src -name "*.d") \
|
SRC := $(shell find src -name "*.d") \
|
||||||
$(shell find libdparse/src -name "*.d") \
|
$(shell find libdparse/src -name "*.d")
|
||||||
$(shell find libdparse/experimental_allocator/src -name "*.d")
|
INCLUDE_PATHS := -Ilibdparse/src -Isrc
|
||||||
INCLUDE_PATHS := -Ilibdparse/src -Isrc -Ilibdparse/experimental_allocator/src
|
|
||||||
DMD_COMMON_FLAGS := -dip25 -w $(INCLUDE_PATHS)
|
DMD_COMMON_FLAGS := -dip25 -w $(INCLUDE_PATHS)
|
||||||
DMD_DEBUG_FLAGS := -g $(DMD_COMMON_FLAGS)
|
DMD_DEBUG_FLAGS := -g $(DMD_COMMON_FLAGS)
|
||||||
DMD_FLAGS := -O -inline $(DMD_COMMON_FLAGS)
|
DMD_FLAGS := -O -inline $(DMD_COMMON_FLAGS)
|
||||||
|
|
|
@ -36,6 +36,7 @@ int tokenLength(ref const Token t) pure @safe @nogc
|
||||||
{
|
{
|
||||||
import std.algorithm : countUntil;
|
import std.algorithm : countUntil;
|
||||||
|
|
||||||
|
int c;
|
||||||
switch (t.type)
|
switch (t.type)
|
||||||
{
|
{
|
||||||
case tok!"doubleLiteral":
|
case tok!"doubleLiteral":
|
||||||
|
@ -55,7 +56,7 @@ int tokenLength(ref const Token t) pure @safe @nogc
|
||||||
case tok!"wstringLiteral":
|
case tok!"wstringLiteral":
|
||||||
case tok!"dstringLiteral":
|
case tok!"dstringLiteral":
|
||||||
// TODO: Unicode line breaks and old-Mac line endings
|
// TODO: Unicode line breaks and old-Mac line endings
|
||||||
auto c = cast(int) t.text.countUntil('\n');
|
c = cast(int) t.text.countUntil('\n');
|
||||||
if (c == -1)
|
if (c == -1)
|
||||||
return cast(int) t.text.length;
|
return cast(int) t.text.length;
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue