Skip to content
Snippets Groups Projects
Commit f6d7012a authored by nweiz@google.com's avatar nweiz@google.com Committed by Natalie Weizenbaum
Browse files

Only support the new source_span spans in barback.

This releases barback 0.15.0, code_transformers 0.2.0+1, observe 0.11.0+2,
polymer 0.12.0+3, and smoke 0.2.0+3.

BUG=19930
R=blois@google.com, rnystrom@google.com, sigmund@google.com

Review URL: https://codereview.chromium.org//430973002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@38762 260f80e4-7a28-3924-810f-c04153c831b5
parent a14d532f
No related branches found
No related tags found
No related merge requests found
...@@ -38,7 +38,7 @@ import 'version.dart'; ...@@ -38,7 +38,7 @@ import 'version.dart';
/// ///
/// [compat]: https://gist.github.com/nex3/10942218 /// [compat]: https://gist.github.com/nex3/10942218
final pubConstraints = { final pubConstraints = {
"barback": new VersionConstraint.parse(">=0.13.0 <0.14.3"), "barback": new VersionConstraint.parse(">=0.13.0 <0.15.1"),
"source_span": new VersionConstraint.parse(">=1.0.0 <2.0.0"), "source_span": new VersionConstraint.parse(">=1.0.0 <2.0.0"),
"stack_trace": new VersionConstraint.parse(">=0.9.1 <2.0.0") "stack_trace": new VersionConstraint.parse(">=0.9.1 <2.0.0")
}; };
......
...@@ -673,7 +673,7 @@ void _log(LogEntry entry) { ...@@ -673,7 +673,7 @@ void _log(LogEntry entry) {
var prefix = "[${prefixParts.join(' ')}]:"; var prefix = "[${prefixParts.join(' ')}]:";
var message = entry.message; var message = entry.message;
if (entry.span != null) { if (entry.span != null) {
message = entry.span.getLocationMessage(entry.message); message = entry.span.message(entry.message);
} }
switch (entry.level) { switch (entry.level) {
......
...@@ -10,7 +10,6 @@ import 'dart:convert'; ...@@ -10,7 +10,6 @@ import 'dart:convert';
import 'dart:io'; import 'dart:io';
import 'package:path/path.dart' as p; import 'package:path/path.dart' as p;
import 'package:source_maps/source_maps.dart';
import 'package:source_span/source_span.dart'; import 'package:source_span/source_span.dart';
import 'package:stack_trace/stack_trace.dart'; import 'package:stack_trace/stack_trace.dart';
...@@ -316,9 +315,7 @@ void exception(exception, [StackTrace trace]) { ...@@ -316,9 +315,7 @@ void exception(exception, [StackTrace trace]) {
// This is basically the top-level exception handler so that we don't // This is basically the top-level exception handler so that we don't
// spew a stack trace on our users. // spew a stack trace on our users.
if (exception is SpanException) { if (exception is SourceSpanException) {
error(exception.toString(useColors: canUseSpecialChars));
} else if (exception is SourceSpanException) {
error(exception.toString(color: canUseSpecialChars)); error(exception.toString(color: canUseSpecialChars));
} else { } else {
error(getErrorMessage(exception)); error(getErrorMessage(exception));
...@@ -510,8 +507,7 @@ class _JsonLogger { ...@@ -510,8 +507,7 @@ class _JsonLogger {
} }
// If the error came from a file, include the path. // If the error came from a file, include the path.
if ((error is SpanException || error is SourceSpanException) && if (error is SourceSpanException && error.span.sourceUrl != null) {
error.span.sourceUrl != null) {
errorJson["path"] = p.fromUri(error.span.sourceUrl); errorJson["path"] = p.fromUri(error.span.sourceUrl);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment