dart-sublime-bundle icon indicating copy to clipboard operation
dart-sublime-bundle copied to clipboard

'this' keyword highlighting

Open jessehorne opened this issue 12 years ago • 1 comments

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);
}

jessehorne avatar Oct 09 '13 09:10 jessehorne

Why? this is not highlighted in other languages in sublime.

0xcaff avatar Mar 25 '14 18:03 0xcaff