-
-
Notifications
You must be signed in to change notification settings - Fork 608
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate expressive diagnostic messages
- Loading branch information
Showing
11 changed files
with
248 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
dmd now supports expressive diagnostic error messages with `-verrors=context` | ||
|
||
With the new CLI option `-verrors=context` dmd will now show the offending line directly in its error messages. | ||
Consider this faulty program `test.d`: | ||
|
||
--- | ||
void foo() | ||
{ | ||
a = 1; | ||
} | ||
--- | ||
|
||
Now run it with `-verrors=context`: | ||
|
||
$(CONSOLE | ||
> dmd -verrors=context test.d | ||
test.d(4): $(RED Error): undefined identifier a | ||
a = 1; | ||
^ | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
/** | ||
* Compiler implementation of the | ||
* $(LINK2 http://www.dlang.org, D programming language). | ||
* | ||
* Copyright: Copyright (C) 1999-2018 by The D Language Foundation, All Rights Reserved | ||
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) | ||
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) | ||
* Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/filecache.d, _errors.d) | ||
* Documentation: https://dlang.org/phobos/dmd_filecache.html | ||
* Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/filecache.d | ||
*/ | ||
|
||
module dmd.filecache; | ||
|
||
import dmd.root.stringtable; | ||
import dmd.root.array; | ||
import dmd.root.file; | ||
|
||
import core.stdc.stdio; | ||
|
||
// A simple wrapper around a string in D for extern(C++) compatibility | ||
extern(C++) struct Dstring | ||
{ | ||
char* ptr; | ||
size_t length; | ||
extern(D) string toString() | ||
{ | ||
return cast(string) ptr[0 .. length]; | ||
} | ||
} | ||
|
||
/** | ||
A line-by-line representation of a $(REF File, dmd, root, file). | ||
*/ | ||
class FileAndLines | ||
{ | ||
File* file; | ||
Array!Dstring* lines; | ||
|
||
/** | ||
File to read and split into its lines. | ||
*/ | ||
this(const(char)* filename) | ||
{ | ||
file = File.create(filename); | ||
lines = new Array!Dstring; | ||
readAndSplit(); | ||
} | ||
|
||
// Read a file and split the file buffer linewise | ||
private void readAndSplit() | ||
{ | ||
file.read(); | ||
auto buf = file.buffer; | ||
// slice into lines | ||
while (*buf) | ||
{ | ||
auto prevBuf = buf; | ||
for (; *buf != '\n'; buf++) | ||
{ | ||
if (!*buf) | ||
break; | ||
} | ||
if (buf != prevBuf) | ||
lines.push(Dstring(cast(char*) prevBuf, buf - prevBuf)); | ||
buf++; | ||
} | ||
} | ||
|
||
void destroy() | ||
{ | ||
if (file) | ||
{ | ||
import core.memory : GC; | ||
file.__dtor(); | ||
GC.free(file); | ||
file = null; | ||
lines.__dtor(); | ||
GC.free(lines); | ||
lines = null; | ||
} | ||
} | ||
~this() | ||
{ | ||
destroy(); | ||
} | ||
} | ||
|
||
/** | ||
A simple file cache that can be used to avoid reading the same file multiple times. | ||
It stores its cached files as $(LREF FileAndLines) | ||
*/ | ||
struct FileCache | ||
{ | ||
private StringTable files; | ||
|
||
/** | ||
Add or get a file from the file cache. | ||
If the file isn't part of the cache, it will be read from the filesystem. | ||
If the file has been read before, the cached file object will be returned | ||
Params: | ||
file = file to load in (or get from) the cache | ||
Returns: a $(LREF FileAndLines) object containing a line-by-line representation of the requested file | ||
*/ | ||
FileAndLines addOrGetFile(const(char)[] file) | ||
{ | ||
if (auto payload = files.lookup(file.ptr, file.length)) | ||
if (payload !is null) | ||
return cast(typeof(return)) payload.ptrvalue; | ||
|
||
auto lines = new FileAndLines(file.ptr); | ||
auto p = files.insert(file.ptr, file.length, cast(void*) lines); | ||
return cast(typeof(return)) p.ptrvalue; | ||
} | ||
|
||
void initialize() | ||
{ | ||
files._init(); | ||
} | ||
|
||
void deinitialize() | ||
{ | ||
foreach (sv; files) | ||
sv.destroy(); | ||
files.reset(); | ||
} | ||
} | ||
|
||
static fileCache = FileCache(); | ||
|
||
shared static this() | ||
{ | ||
fileCache.initialize(); | ||
} | ||
shared static ~this() | ||
{ | ||
fileCache.deinitialize(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
REQUIRED_ARGS: -verrors=pretty | ||
TEST_OUTPUT: | ||
--- | ||
fail_compilation/fail_pretty_errors.d(20): Error: undefined identifier `a` | ||
a = 1; | ||
^ | ||
fail_compilation/fail_pretty_errors.d-mixin-25(25): Error: undefined identifier `b` | ||
fail_compilation/fail_pretty_errors.d(30): Error: cannot implicitly convert expression `5` of type `int` to `string` | ||
string x = 5; | ||
^ | ||
fail_compilation/fail_pretty_errors.d(35): Error: mixin `fail_pretty_errors.testMixin2.mixinTemplate!()` error instantiating | ||
mixin mixinTemplate; | ||
^ | ||
--- | ||
*/ | ||
|
||
void foo() | ||
{ | ||
a = 1; | ||
} | ||
|
||
void testMixin1() | ||
{ | ||
mixin("b = 1;"); | ||
} | ||
|
||
mixin template mixinTemplate() | ||
{ | ||
string x = 5; | ||
} | ||
|
||
void testMixin2() | ||
{ | ||
mixin mixinTemplate; | ||
} |