| Index: utils/css/token.dart
 | 
| diff --git a/utils/css/token.dart b/utils/css/token.dart
 | 
| index 8e5b98c7044088b35ca7ddf5fc60e53b7873d2fb..144e39c296449fea5452806edcd2e32e7cbc3ffd 100644
 | 
| --- a/utils/css/token.dart
 | 
| +++ b/utils/css/token.dart
 | 
| @@ -21,7 +21,7 @@ class Token {
 | 
|      : this.source = span.file, this.start = span.start, this.end = span.end;
 | 
|  
 | 
|    /** Returns the source text corresponding to this [Token]. */
 | 
| -  String get text() {
 | 
| +  String get text {
 | 
|      return source.text.substring(start, end);
 | 
|    }
 | 
|  
 | 
| @@ -40,7 +40,7 @@ class Token {
 | 
|    }
 | 
|  
 | 
|    /** Returns a [SourceSpan] representing the source location. */
 | 
| -  SourceSpan get span() {
 | 
| +  SourceSpan get span {
 | 
|      return new SourceSpan(source, start, end);
 | 
|    }
 | 
|  }
 | 
| 
 |