jsx / JSX

JSX - a faster, safer, easier JavaScript
http://jsx.github.io/
MIT License
1.46k stars 102 forks source link

File name and line number don't appear in error message #281

Open shibukawa opened 10 years ago

shibukawa commented 10 years ago

When template parameter is used, the file name and line number don't appear in the error message.

$ jsx test.jsx
class should be declared as 'abstract' since the following members do not have concrete definition: Base#method()
abstract class Base {
    abstract function method() : void;
}

class Child.<T> extends Base {
}

class GrandChild extends Child.<int> {
    override function method() : void {}
}