ceylon-ide-intellij icon indicating copy to clipboard operation
ceylon-ide-intellij copied to clipboard

Broken Java source links in stack traces in IntelliJ console of running program

Open xkr47 opened this issue 7 years ago • 0 comments

If there are references to java source files in a stack trace, they go to a ceylon file with the same name instead, to the correct line number.

For example:

	at ceylon.language.List$impl$1list_.getFromFirst(List.ceylon:641)
	at ceylon.language.List$impl.getElement$priv$(List.ceylon:94)
	at ceylon.language.List$impl.access$100(List.ceylon)
	at ceylon.language.List$impl$1anonymous_0_.next(List.ceylon:164)
	at ceylon.language.Array.createArrayFromList(Array.java:391)
	at ceylon.language.Array.createArrayFromIterable(Array.java:157)
	at ceylon.language.Array.<init>(Array.java:112)
	at ceylon.language.List$impl.collect(List.ceylon:644)
	at ceylon.json.Array.collect(Array.ceylon)

The List.ceylon links correctly lead to their respective locations while the Array.java links go to Array.ceylon, albeit with correct line numbers (when applicable).

xkr47 avatar Sep 13 '18 05:09 xkr47