annotate tests/parser/string_1.d @ 160:6cb2f4201e2a

Improved static arrays Here is a list of some stuff that works char[3] s = "hey" char[3] s2 = s; s2[1] = 98 // no support for chars, but 98 = 'b' :) int[2] i; i[0] = 2; Still can't pass static arrays to functions
author Anders Halager <halager@gmail.com>
date Tue, 22 Jul 2008 13:29:20 +0200
parents c658172ca8a0
children 08b6ce45b456
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
104
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
1
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
2 int main()
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
3 {
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
4 /* All examples taken from D's Language site */
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
5
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
6 char[4] s1 = "food";
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
7
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
8 char[5] s2 = r"hello";
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
9 char[15] s3 = r"c:\root\foo.exe";
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
10 char[4] s4 = r"ab\n";
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
11
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
12 char[5] s5 = `hello`;
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
13 char[15] s6 = `c:\root\foo.exe`;
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
14 char[4] s7 = `ab\n`;
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
15
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
16 char[5] s10 = "hello";
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
17 char[15] s11 = "c:\\root\\foo.exe";
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
18 char[3] s12 = "ab\n";
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
19 char[3] s13 = "ab
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
20 ";
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
21
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
22 char[1] s14 = x"0A";
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
23 char[6] s15 = x"00 FBCD 32FD 0A";
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
24
106
89db676fbacb Now able of understanding strings.
Anders Johnsen <skabet@gmail.com>
parents: 104
diff changeset
25 /* And some custom ones */
89db676fbacb Now able of understanding strings.
Anders Johnsen <skabet@gmail.com>
parents: 104
diff changeset
26
89db676fbacb Now able of understanding strings.
Anders Johnsen <skabet@gmail.com>
parents: 104
diff changeset
27 char[8] s16 = "\x61\u05D0\U000201A4";
89db676fbacb Now able of understanding strings.
Anders Johnsen <skabet@gmail.com>
parents: 104
diff changeset
28 char[2] s17 = "\122\522";
160
6cb2f4201e2a Improved static arrays
Anders Halager <halager@gmail.com>
parents: 111
diff changeset
29 char[6] s18 = x"61 62 63 64
106
89db676fbacb Now able of understanding strings.
Anders Johnsen <skabet@gmail.com>
parents: 104
diff changeset
30 65 66 67 68";
89db676fbacb Now able of understanding strings.
Anders Johnsen <skabet@gmail.com>
parents: 104
diff changeset
31
160
6cb2f4201e2a Improved static arrays
Anders Halager <halager@gmail.com>
parents: 111
diff changeset
32 char[4] s19 = "\&reg;\&amp;";
111
c658172ca8a0 Parsing basic integers and floats.
Anders Johnsen <skabet@gmail.com>
parents: 106
diff changeset
33
160
6cb2f4201e2a Improved static arrays
Anders Halager <halager@gmail.com>
parents: 111
diff changeset
34 char[4] s20 = "\&reg;\&amp;"c;
6cb2f4201e2a Improved static arrays
Anders Halager <halager@gmail.com>
parents: 111
diff changeset
35 wchar[2] s21 = "\&reg;\&amp;"w;
6cb2f4201e2a Improved static arrays
Anders Halager <halager@gmail.com>
parents: 111
diff changeset
36 dchar[2] s22 = "\&reg;\&amp;"d;
106
89db676fbacb Now able of understanding strings.
Anders Johnsen <skabet@gmail.com>
parents: 104
diff changeset
37
104
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
38 return 0;
7ff4bc2accf2 Lexing more types of strings. Now all's left is to parse the string in the AST.
Anders Johnsen <skabet@gmail.com>
parents:
diff changeset
39 }