dart-sublime-bundle
dart-sublime-bundle copied to clipboard
'this' keyword highlighting
The 'this' keyword should be highlighted.
Example
class Rectangle {
num left;
num top;
num width;
num height;
Rectangle(this.left, this.top, this.width, this.height);
}
Why? this is not highlighted in other languages in sublime.