Skip to content

Commit 1d923a3

Browse files
committed
Version 2.10.2
* Cherry-pick 59fe3d5 to stable * Cherry-pick b84cdd5 to stable
2 parents efd7536 + ebae505 commit 1d923a3

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 2.10.2 - 2020-10-13
2+
3+
This is a patch release that fixes a DDC compiler crash (issue [#43589]).
4+
5+
[#43589]: https://github.com/dart-lang/sdk/issues/43589
6+
17
## 2.10.1 - 2020-10-06
28

39
This is a patch release that fixes the following issues:

pkg/dev_compiler/lib/src/kernel/compiler.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5034,7 +5034,7 @@ class ProgramCompiler extends ComputeOnceConstantVisitor<js_ast.Expression>
50345034

50355035
assert(result is js_ast.Expression ||
50365036
result is js_ast.Statement && node.parent is ExpressionStatement);
5037-
return result;
5037+
return result.withSourceInformation(_nodeStart(node));
50385038
}
50395039

50405040
bool _isNull(Expression expr) =>

tools/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
CHANNEL stable
2727
MAJOR 2
2828
MINOR 10
29-
PATCH 1
29+
PATCH 2
3030
PRERELEASE 0
3131
PRERELEASE_PATCH 0

0 commit comments

Comments
 (0)