blob: d5b8773216c62a9fbc927153945f05a14c152fb9 [file] [log] [blame]
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @dart = 2.9
/// @assertion
/// stringLiteral:
/// (multilineString | singleLineString)+
/// ;
/// multilineString:
/// '"""' stringContentTDQ* '"""' |
/// ''''' stringContentTSQ* ''''' |
/// '"""' (~ '"""')* '"""' |
/// ''''' (~ ''''')* '''''
/// ;
/// stringContentTDQ:
/// ~( '\' | '"""' | '$') |
/// stringInterpolation
/// ;
/// stringContenTSQ:
/// ~( '\' | ''''' | '$') |
/// stringInterpolation
/// ;
/// @description Checks that it is a compile-time error when a multi-line
/// double-quotes string literal has fewer than 3 closing quotes.
/// @author rodionov
/// @reviewer msyabro
main() {
// ^
// [cfe] unspecified
try {
//^
// [analyzer] unspecified
// [cfe] unspecified
"""foo"";
// ^
// [analyzer] unspecified
// [cfe] unspecified
} catch (e) {}
}
// [error line 45, column 0]
// [analyzer] unspecified