| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library csslib.src.options; | 5 library csslib.src.options; |
| 6 | 6 |
| 7 import 'package:args/args.dart'; | 7 import 'package:args/args.dart'; |
| 8 | 8 |
| 9 class PreprocessorOptions { | 9 class PreprocessorOptions { |
| 10 /** Generate polyfill code (e.g., var, etc.) */ | 10 /** Generate polyfill code (e.g., var, etc.) */ |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 showUsage(parser); | 102 showUsage(parser); |
| 103 return null; | 103 return null; |
| 104 } | 104 } |
| 105 } | 105 } |
| 106 | 106 |
| 107 static showUsage(parser) { | 107 static showUsage(parser) { |
| 108 print('Usage: css [options...] input.css'); | 108 print('Usage: css [options...] input.css'); |
| 109 print(parser.getUsage()); | 109 print(parser.getUsage()); |
| 110 } | 110 } |
| 111 } | 111 } |
| OLD | NEW |