OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 part of csslib.visitor; | 5 part of csslib.visitor; |
6 | 6 |
7 // TODO(terry): Enable class for debug only; when conditional imports enabled. | 7 // TODO(terry): Enable class for debug only; when conditional imports enabled. |
8 | 8 |
9 /** Helper function to dump the CSS AST. */ | 9 /** Helper function to dump the CSS AST. */ |
10 String treeToDebugString(StyleSheet styleSheet, [bool useSpan = false]) { | 10 String treeToDebugString(StyleSheet styleSheet, [bool useSpan = false]) { |
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
549 } | 549 } |
550 | 550 |
551 void visitPaddingExpression(PaddingExpression node) { | 551 void visitPaddingExpression(PaddingExpression node) { |
552 heading('Dart Style PaddingExpression', node); | 552 heading('Dart Style PaddingExpression', node); |
553 } | 553 } |
554 | 554 |
555 void visitWidthExpression(WidthExpression node) { | 555 void visitWidthExpression(WidthExpression node) { |
556 heading('Dart Style WidthExpression', node); | 556 heading('Dart Style WidthExpression', node); |
557 } | 557 } |
558 } | 558 } |
OLD | NEW |