comparison trunk/src/dil/Parser.d @ 511:aa73f669c298

Renamed class Type to TypeNode.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Thu, 13 Dec 2007 21:23:41 +0100
parents baa7c4c0be78
children 6ddff941862a
comparison
equal deleted inserted replaced
510:dd3ce87b3569 511:aa73f669c298
35 Protection protection; 35 Protection protection;
36 StorageClass storageClass; 36 StorageClass storageClass;
37 uint alignSize = DEFAULT_ALIGN_SIZE; 37 uint alignSize = DEFAULT_ALIGN_SIZE;
38 38
39 private alias TOK T; 39 private alias TOK T;
40 40 private alias TypeNode Type;
41
42 /++
43 Construct a Parser object.
44 Params:
45 text = the UTF-8 source code.
46 filePath = the path to the source code; used for error messages.
47 +/
41 this(char[] srcText, string filePath, InformationManager infoMan = null) 48 this(char[] srcText, string filePath, InformationManager infoMan = null)
42 { 49 {
43 lx = new Lexer(srcText, filePath); 50 lx = new Lexer(srcText, filePath);
44 } 51 }
45 52