blob: c900d205db41369dd62d133346e27623c54bcedc [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.
/// @assertion
/// stringLiteral:
/// (multilineString | singleLineString)+
/// ;
/// multilineString:
/// '"""' stringContentTDQ* '"""' |
/// ''''' stringContentTSQ* ''''' |
/// '"""' (~ '"""')* '"""' |
/// ''''' (~ ''''')* '''''
/// ;
/// stringContentTDQ:
/// ~( '\' | '"""' | '$') |
/// stringInterpolation
/// ;
/// stringContenTSQ:
/// ~( '\' | ''''' | '$') |
/// stringInterpolation
/// ;
/// @description Checks that it is a compile-time error when a multi-line
/// single-quotes string literal contains another triplet of single quotes.
/// @author msyabro
main() {
// ^
// [cfe] unspecified
try {
//^
// [analyzer] unspecified
// [cfe] unspecified
// [error line 38, column 0]
// [analyzer] unspecified
// [cfe] unspecified
'''
incorrect ''' string
// ^
// [analyzer] unspecified
// [cfe] unspecified
// [error line 48, column 0]
// [analyzer] unspecified
// [cfe] unspecified
// [error line 50, column 0]
// [analyzer] unspecified
''';
} catch (e) {}
}