Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@
* Fix a race condition where `meta.load-css()` could trigger an internal error
when running in asynchronous mode.

### Dart API

* Use the `@internal` annotation to indicate which `Value` APIs are available
for public use.

## 1.35.1

* Fix a bug where the quiet dependency flag didn't silence warnings in some
Expand Down
3 changes: 1 addition & 2 deletions lib/sass.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ export 'src/exception.dart' show SassException;
export 'src/importer.dart';
export 'src/logger.dart';
export 'src/syntax.dart';
export 'src/value.dart' show ListSeparator;
export 'src/value/external/value.dart';
export 'src/value.dart';
export 'src/visitor/serialize.dart' show OutputStyle;
export 'src/warn.dart' show warn;

Expand Down
8 changes: 3 additions & 5 deletions lib/src/callable.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import 'package:meta/meta.dart';
import 'callable/async.dart';
import 'callable/built_in.dart';
import 'value.dart';
import 'value/external/value.dart' as ext;

export 'callable/async.dart';
export 'callable/async_built_in.dart';
Expand Down Expand Up @@ -67,7 +66,7 @@ export 'callable/user_defined.dart';
abstract class Callable extends AsyncCallable {
@Deprecated('Use `Callable.function` instead.')
factory Callable(String name, String arguments,
ext.Value callback(List<ext.Value> arguments)) =>
Value callback(List<Value> arguments)) =>
Callable.function(name, arguments, callback);

/// Creates a function with the given [name] and [arguments] that runs
Expand Down Expand Up @@ -113,7 +112,6 @@ abstract class Callable extends AsyncCallable {
/// which provides access to keyword arguments using
/// [SassArgumentList.keywords].
factory Callable.function(String name, String arguments,
ext.Value callback(List<ext.Value> arguments)) =>
BuiltInCallable.function(
name, arguments, (arguments) => callback(arguments) as Value);
Value callback(List<Value> arguments)) =>
BuiltInCallable.function(name, arguments, callback);
}
11 changes: 3 additions & 8 deletions lib/src/callable/async.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import 'dart:async';
import 'package:meta/meta.dart';

import '../value.dart';
import '../value/external/value.dart' as ext;
import 'async_built_in.dart';

/// An interface for functions and mixins that can be invoked from Sass by
Expand All @@ -25,7 +24,7 @@ abstract class AsyncCallable {

@Deprecated('Use `AsyncCallable.function` instead.')
factory AsyncCallable(String name, String arguments,
FutureOr<ext.Value> callback(List<ext.Value> arguments)) =>
FutureOr<Value> callback(List<Value> arguments)) =>
AsyncCallable.function(name, arguments, callback);

/// Creates a callable with the given [name] and [arguments] that runs
Expand All @@ -36,10 +35,6 @@ abstract class AsyncCallable {
///
/// See [new Callable] for more details.
factory AsyncCallable.function(String name, String arguments,
FutureOr<ext.Value> callback(List<ext.Value> arguments)) =>
AsyncBuiltInCallable.function(name, arguments, (arguments) {
var result = callback(arguments);
if (result is ext.Value) return result as Value;
return result.then((value) => value as Value);
});
FutureOr<Value> callback(List<Value> arguments)) =>
AsyncBuiltInCallable.function(name, arguments, callback);
}
2 changes: 1 addition & 1 deletion lib/src/exception.dart
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ body::before {
}
}

/// A [SassException] that's also a [MultiSpanSassException].
/// A [SassException] that's also a [MultiSourceSpanException].
class MultiSpanSassException extends SassException
implements MultiSourceSpanException {
final String primaryLabel;
Expand Down
2 changes: 1 addition & 1 deletion lib/src/functions/meta.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ final global = UnmodifiableListView([
if (value is SassColor) return SassString("color", quotes: false);
if (value is SassList) return SassString("list", quotes: false);
if (value is SassMap) return SassString("map", quotes: false);
if (value is SassNull) return SassString("null", quotes: false);
if (value == sassNull) return SassString("null", quotes: false);
if (value is SassNumber) return SassString("number", quotes: false);
if (value is SassFunction) return SassString("function", quotes: false);
assert(value is SassString);
Expand Down
2 changes: 1 addition & 1 deletion lib/src/node/exports.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Exports {
external set renderSync(Function function);
external set info(String info);
external set types(Types types);
external set NULL(SassNull sassNull);
external set NULL(Value sassNull);
external set TRUE(SassBoolean sassTrue);
external set FALSE(SassBoolean sassFalse);
}
Expand Down
Loading