Fix byte order mark stripping (#740)
Fix byte order mark stripping merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
parent
3759479d9c
commit
383fcb84d8
|
@ -7,7 +7,7 @@ import std.encoding : BOM, BOMSeq, EncodingException, getBOM;
|
|||
import std.format : format;
|
||||
import std.file : exists, read;
|
||||
|
||||
private void processBOM(ubyte[] sourceCode, string fname)
|
||||
private void processBOM(ref ubyte[] sourceCode, string fname)
|
||||
{
|
||||
enum spec = "D-Scanner does not support %s-encoded files (%s)";
|
||||
const BOMSeq bs = sourceCode.getBOM;
|
||||
|
@ -21,6 +21,13 @@ private void processBOM(ubyte[] sourceCode, string fname)
|
|||
sourceCode = sourceCode[bs.sequence.length .. $];
|
||||
}
|
||||
|
||||
unittest
|
||||
{
|
||||
ubyte[] data = [0xEF, 0xBB, 0xBF, 'h', 'i', '!'];
|
||||
data.processBOM("unittest data");
|
||||
assert(data[] == cast(ubyte[]) "hi!");
|
||||
}
|
||||
|
||||
unittest
|
||||
{
|
||||
import std.exception : assertThrown, assertNotThrown;
|
||||
|
@ -52,8 +59,9 @@ ubyte[] readStdin()
|
|||
break;
|
||||
sourceCode.put(b);
|
||||
}
|
||||
sourceCode.data.processBOM("stdin");
|
||||
return sourceCode.data;
|
||||
auto data = sourceCode.data;
|
||||
data.processBOM("stdin");
|
||||
return data;
|
||||
}
|
||||
|
||||
ubyte[] readFile(string fileName)
|
||||
|
|
Loading…
Reference in New Issue