blob: 03e82251c4f2a659a379d6aa4a981d828c990dc7 [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:
* (MULTI_LINE_STRING | SINGLE_LINE_STRING)+
* ;
* MULTI_LINE_STRING:
* '"""' STRING CONTENT TDQ* '"""' |
* ''''' STRING CONTENT TSQ* ''''' |
* r'"""' (~ '"""')* '"""' |
* r''''' (~ ''''')* '''''
* ;
* STRING CONTENT TDQ:
* ~( '\' | '"""' | '$') |
* STRING_INTERPOLATION
* ;
* STRING CONTENT TSQ:
* ~( '\' | ''''' | '$') |
* STRING_INTERPOLATION
* ;
* @description Checks that raw multi-line strings are allowed to have any content
* except the same kind of triple quotes they're enclosed in.
* @author rodionov
* @reviewer kaigorodov
*/
main() {
r"""$""";
}