Diff
Not logged in

Differences From Artifact [0d0a3e76147a101b]:

To Artifact [ac6802f569d2081c]:


1 /** 1 /** 2 * Authors: k.inaba 2 * Authors: k.inaba 3 * License: NYSL 0.9982 http://www.kmonos.net/nysl/ 3 * License: NYSL 0.9982 http://www.kmonos.net/nysl/ 4 * 4 * 5 * Runtime data structures for Polemy programming language. 5 * Runtime data structures for Polemy programming language. 6 */ 6 */ 7 module polemy.runtime; | 7 module polemy.value; 8 import polemy._common; 8 import polemy._common; 9 import polemy.lex : LexPosition; 9 import polemy.lex : LexPosition; 10 import std.stdio; 10 import std.stdio; 11 11 12 class PolemyRuntimeException : Exception 12 class PolemyRuntimeException : Exception 13 { 13 { 14 this(string msg) { super(msg); } 14 this(string msg) { super(msg); }