Changeset 289 for trunk/enki/CodeGenerator.d
- Timestamp:
- 03/01/08 19:32:14 (4 years ago)
- Files:
-
- trunk/enki/CodeGenerator.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/enki/CodeGenerator.d
r231 r289 27 27 private import enki.types; 28 28 29 private import std.string;29 private import tango.io.Stdout; 30 30 31 31 interface IRenderable{ … … 67 67 public this(String name){ 68 68 counter++; 69 this.name = name ~ std.string.toString(counter);69 this.name = name ~ .toString(counter); 70 70 } 71 71 … … 170 170 public String getUniqueLabel(String label){ 171 171 counter++; 172 return label ~ std.string.toString(counter);172 return label ~ .toString(counter); 173 173 } 174 174
