diff --git a/pkg/kernel/lib/ast.dart b/pkg/kernel/lib/ast.dart index 2bc6a025c18..e8505f8be7f 100644 --- a/pkg/kernel/lib/ast.dart +++ b/pkg/kernel/lib/ast.dart @@ -9360,14 +9360,12 @@ class AssertStatement extends Statement { Expression condition; Expression? message; // May be null. - /// Character offset in the source where the assertion condition begins. - /// - /// Note: This is not the offset into the UTF8 encoded `List` source. + /// Character offset in the source ([Source.text]) where the assertion + /// condition begins. int conditionStartOffset; - /// Character offset in the source where the assertion condition ends. - /// - /// Note: This is not the offset into the UTF8 encoded `List` source. + /// Character offset in the source ([Source.text]) where the assertion + /// condition ends. int conditionEndOffset; @override