mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-27 04:34:59 +01:00
Make the CSS AST a sibling of the Sass AST.
This commit is contained in:
parent
fbae2fe016
commit
4023f33d4c
@ -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';
|
||||
|
@ -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 {}
|
@ -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';
|
||||
|
@ -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;
|
Loading…
Reference in New Issue
Block a user