dart-sass/lib/src/value/list.dart

78 lines
2.4 KiB
Dart
Raw Normal View History

2016-05-24 20:56:53 +02:00
// 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.
2016-08-15 07:32:00 +02:00
import '../utils.dart';
2016-08-15 08:51:29 +02:00
import '../visitor/interface/value.dart';
2016-05-24 20:56:53 +02:00
import '../value.dart';
import 'external/value.dart' as ext;
2016-05-24 20:56:53 +02:00
class SassList extends Value implements ext.SassList {
2016-05-24 20:56:53 +02:00
final List<Value> contents;
final ListSeparator separator;
final bool hasBrackets;
2016-08-15 00:49:50 +02:00
2016-06-03 22:36:20 +02:00
bool get isBlank => contents.every((element) => element.isBlank);
2016-09-07 19:18:30 +02:00
List<Value> get asList => contents;
int get lengthAsList => contents.length;
2016-09-22 19:13:54 +02:00
const SassList.empty({ListSeparator separator, bool brackets: false})
: contents = const [],
separator = separator ?? ListSeparator.undecided,
hasBrackets = brackets;
SassList(Iterable<Value> contents, this.separator, {bool brackets: false})
2016-08-15 00:49:50 +02:00
: contents = new List.unmodifiable(contents),
2016-09-22 18:27:01 +02:00
hasBrackets = brackets {
if (separator == ListSeparator.undecided && contents.length > 1) {
throw new ArgumentError(
"A list with more than one element must have an explicit separator.");
}
}
2016-05-24 20:56:53 +02:00
2017-05-19 01:47:22 +02:00
T accept<T>(ValueVisitor<T> visitor) => visitor.visitList(this);
2016-05-28 01:09:03 +02:00
2016-09-22 19:13:54 +02:00
SassMap assertMap([String name]) =>
contents.isEmpty ? const SassMap.empty() : super.assertMap(name);
2016-08-15 07:32:00 +02:00
bool operator ==(other) =>
2016-09-22 19:13:54 +02:00
(other is SassList &&
other.separator == separator &&
other.hasBrackets == hasBrackets &&
listEquals(other.contents, contents)) ||
(contents.isEmpty && other is SassMap && other.contents.isEmpty);
2016-08-15 07:32:00 +02:00
int get hashCode => listHash(contents);
2016-05-24 20:56:53 +02:00
}
2016-10-15 11:57:29 +02:00
/// An enum of list separator types.
2016-05-24 20:56:53 +02:00
class ListSeparator {
2016-10-15 11:57:29 +02:00
/// A space-separated list.
static const space = const ListSeparator._("space", " ");
2016-10-15 11:57:29 +02:00
/// A comma-separated list.
static const comma = const ListSeparator._("comma", ",");
2016-10-15 11:57:29 +02:00
/// A separator that hasn't yet been determined.
///
/// Singleton lists and empty lists don't have separators defiend. This means
/// that list functions will prefer other lists' separators if possible.
static const undecided = const ListSeparator._("undecided", null);
2016-05-24 20:56:53 +02:00
2016-10-15 11:57:29 +02:00
final String _name;
2016-05-24 20:56:53 +02:00
/// The separator character.
///
/// If the separator of a list has not been decided, this value will be
/// `null`.
final String separator;
const ListSeparator._(this._name, this.separator);
2016-05-24 20:56:53 +02:00
2016-10-15 11:57:29 +02:00
String toString() => _name;
2016-05-24 20:56:53 +02:00
}