| Index: dart/frog/leg/typechecker.dart
|
| diff --git a/dart/frog/leg/typechecker.dart b/dart/frog/leg/typechecker.dart
|
| index 7f3ff87c71aa550bd4ecc3c19babcda895c667e2..0b38475febba1608ff4ca852c946c6914c61c11d 100644
|
| --- a/dart/frog/leg/typechecker.dart
|
| +++ b/dart/frog/leg/typechecker.dart
|
| @@ -532,4 +532,13 @@ class TypeCheckerVisitor implements Visitor<Type> {
|
| return objectType;
|
| }
|
| }
|
| +
|
| + visitStringInterpolation(StringInterpolation node) {
|
| + node.visitChildren(this);
|
| + return stringType;
|
| + }
|
| +
|
| + visitStringInterpolationPart(StringInterpolationPart node) {
|
| + node.visitChildren(this);
|
| + }
|
| }
|
|
|