Set precision to 10.

This commit is contained in:
Natalie Weizenbaum 2016-08-29 11:14:30 -07:00 committed by Natalie Weizenbaum
parent cdc3065dfb
commit e2eb590ce6
2 changed files with 4 additions and 1 deletions

View File

@ -85,7 +85,10 @@ official behavior.
3. Pseudo selector arguments are parsed as `<declaration-value>`s rather than
having a more limited custom parsing. See [issue 2120][].
4. The numeric precision is set to 10. See [issue 1122][].
[issue 1599]: https://github.com/sass/sass/issues/1599
[issue 1126]: https://github.com/sass/sass/issues/1126
[issue 2120]: https://github.com/sass/sass/issues/2120
[issue 1122]: https://github.com/sass/sass/issues/1122

View File

@ -6,7 +6,7 @@ import '../visitor/interface/value.dart';
import '../value.dart';
class SassNumber extends Value {
static const precision = 5;
static const precision = 10;
final num value;