blob: a6f7b737495f2f63f7fa56a7dc1ae98654f8c65c [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 does not have the closing triplet.
* @compile-error
* @author msyabro
* @reviewer rodionov
*/
main() {
try {
'''incorrect string;
} catch (e) {}
}