comparison graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/parser/Scanner.frame @ 12752:71991b7a0f14

SL: Enhanced SimpleLanguage with support for if statements, function calls, function caching + inlining and builtins.
author Christian Humer <christian.humer@gmail.com>
date Mon, 11 Nov 2013 21:34:44 +0100
parents b6743d7eb8d4
children
comparison
equal deleted inserted replaced
12712:882a0aadfed6 12752:71991b7a0f14
24 24
25 If not otherwise stated, any source code generated by Coco/R (other than 25 If not otherwise stated, any source code generated by Coco/R (other than
26 Coco/R itself) does not fall under the GNU General Public License. 26 Coco/R itself) does not fall under the GNU General Public License.
27 ------------------------------------------------------------------------*/ 27 ------------------------------------------------------------------------*/
28 -->begin 28 -->begin
29 package com.oracle.truffle.sl.parser;
30
29 import java.io.InputStream; 31 import java.io.InputStream;
30 import java.io.IOException; 32 import java.io.IOException;
31 import java.io.RandomAccessFile; 33 import java.io.RandomAccessFile;
32 import java.util.Map; 34 import java.util.Map;
33 import java.util.HashMap; 35 import java.util.HashMap;