-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest.txt
More file actions
24 lines (24 loc) · 715 Bytes
/
Test.txt
File metadata and controls
24 lines (24 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
%$; Copyright (c) 2016 Patrick Nelson. All rights reserved.
%$; Licensed under the MIT license. See LICENSE file in the project root for full license information.
%$;
%$; Input file to test errors and other scenarios not covered by Self.txt
%$; Expected output:
%$; Parse error on line 17: Expecting parameter name identifier.
%$; Parse error on line 19: Expecting ')'.
%$; Parse error on line 21: Unexpected text after function name
%$; Parse error on line 24: Unknown parameter - b
%$; Output file generated.
%$-DirectConcat(val1, val2)
$val1$$val2$.
%$-OutDollar(val1)
$$
%$-CSharpIdent(string)
$string$
%$-MissingParam(a,)
$a$
%$-MissingParen(a
$a$
%$-ExtraText() a
a
%$-UnknownParam(a)
$b$