Make the CSS AST a sibling of the Sass AST.

This commit is contained in:
Natalie Weizenbaum 2016-05-24 12:13:43 -07:00
parent fbae2fe016
commit 4023f33d4c
6 changed files with 5 additions and 7 deletions

View File

@ -4,7 +4,7 @@
import 'package:source_span/source_span.dart';
import '../value/identifier.dart';
import '../../value/identifier.dart';
import 'node.dart';
import 'value.dart';

View File

@ -2,8 +2,6 @@
// MIT-style license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.
import 'package:source_span/source_span.dart';
import '../node.dart';
abstract class CssNode {
SourceSpan get span;
}
abstract class CssNode extends AstNode {}

View File

@ -4,7 +4,7 @@
import 'package:source_span/source_span.dart';
import '../value/identifier.dart';
import '../../value/identifier.dart';
import 'node.dart';
import 'value.dart';

View File

@ -5,7 +5,7 @@
import 'package:source_span/source_span.dart';
import 'node.dart';
import '../value.dart';
import '../../value.dart';
class CssValue<T extends Value> implements CssNode {
final T value;