dart-sass/lib/src/ast/selector.dart
2016-08-30 15:51:20 -07:00

19 lines
598 B
Dart

// Copyright 2016 Google Inc. Use of this source code is governed by an
// MIT-style license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.
export 'selector/attribute.dart';
export 'selector/class.dart';
export 'selector/complex.dart';
export 'selector/compound.dart';
export 'selector/id.dart';
export 'selector/list.dart';
export 'selector/namespaced_identifier.dart';
export 'selector/placeholder.dart';
export 'selector/pseudo.dart';
export 'selector/simple.dart';
export 'selector/type.dart';
export 'selector/universal.dart';
abstract class Selector {}