This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| | |
| | |
. .. | |
\ . .. / | |
\. .. ../ | |
|| . .| | |
|| .. | | |
|| . .. | | |
. .. | |
. .. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
スクリプトは 2014年07月23日 15時16分18秒 | |
に開始しました[1m[3m%[23m[1m[0m | |
[0m[23m[24m[J([K[98C[31m:branch[00m master [31m:cwd[00m ~/compile/mirah)[134D[?1h=rrm -rf dist/[?1l> | |
[1m[3m%[23m[1m[0m | |
[0m[23m[24m[J([K[98C[31m:branch[00m master [31m:cwd[00m ~/compile/mirah)[134D[?1h=mmvn[?1l> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/org/mirah/tool/mirahc.mirah b/src/org/mirah/tool/mirahc.mirah | |
index 754008f..dcbe23e 100644 | |
--- a/src/org/mirah/tool/mirahc.mirah | |
+++ b/src/org/mirah/tool/mirahc.mirah | |
@@ -31,12 +31,13 @@ class Mirahc < MirahTool | |
end | |
def self.main(args:String[]):void | |
- result = compile(args) | |
+ mirahc = Mirahc.new() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/mirahparser/impl/Mirah.mmeta b/src/mirahparser/impl/Mirah.mmeta | |
index 520b75b..b4c3d36 100644 | |
--- a/src/mirahparser/impl/Mirah.mmeta | |
+++ b/src/mirahparser/impl/Mirah.mmeta | |
@@ -1293,7 +1293,8 @@ parser EscapeParser { | |
|codepoint | |
); | |
- regex: unicode_escape | |
+ regex: "\\\\" ! {"\\\\"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java -jar /home/kim/compile/mirah-parser/javalib/mirahc.jar --classpath /home/kim/compile/mirah-parser/javalib/mirah.jar -d /home/kim/compile/mirah-parser/build ./src/org/mirah/ast/meta.mirah | |
./src/org/mirah/ast/meta.mirah:18: | |
[1m[31mERROR[0m: Cannot find class org.mirahparser.ast.mirah.lang.ast.Block | |
import mirah.lang.ast.Block | |
^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
./src/org/mirah/ast/meta.mirah:19: | |
[1m[31mERROR[0m: Cannot find class org.mirahparser.ast.mirah.lang.ast.CallSite | |
import mirah.lang.ast.CallSite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ 2%] Generating ../src/init_contrib.c | |
[ 5%] Generating ../src/load_piclib.c | |
[ 8%] Building C object CMakeFiles/picrin.dir/src/load.c.o | |
In file included from /home/pi/compile/picrin/include/picrin.h:40:0, | |
from /home/pi/compile/picrin/src/load.c:5: | |
/home/pi/compile/picrin/extlib/xhash/xhash.h: In function ‘xh_ptr_hash’: | |
/home/pi/compile/picrin/extlib/xhash/xhash.h:117:15: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] | |
/home/pi/compile/picrin/extlib/xhash/xhash.h: In function ‘xh_int_hash’: | |
/home/pi/compile/picrin/extlib/xhash/xhash.h:135:15: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] | |
/home/pi/compile/picrin/extlib/xhash/xhash.h: In function ‘xh_get_int’: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java -jar /home/kim/compile/mirah-parser/javalib/mirahc.jar --classpath /home/kim/compile/mirah-parser/build:/home/kim/compile/mirah-parser/javalib/mirahc.jar -d /home/kim/compile/mirah-parser/build src/mirah/lang/ast/. | |
[1m* [ClassCompiler[39m] [0mCompiling class mirahparser.lang.ast.Position$Extension1 | |
[1m* [ClassCompiler[39m] [0mCompiling class mirahparser.lang.ast.TypeRef$Extension1 | |
[1m* [ClassCompiler[39m] [0mCompiling class mirahparser.lang.ast.TypeRef$Extension2 | |
[1m* [ClassCompiler[39m] [0mCompiling class mirahparser.lang.ast.NodeVisitor$Extension1 | |
[1m* [ClassCompiler[39m] [0mCompiling class mirahparser.lang.ast.NodeImpl$Extension1 | |
[1m* [ClassCompiler[39m] [0mCompiling class mirahparser.lang.ast.NodeImpl$Extension2 | |
[1m* [ClassCompiler[39m] [0mCompiling class mirahparser.lang.ast.NodeImpl$Extension3 | |
[1m* [ClassCompiler[39m] [0mCompiling class mirahparser.lang.ast.NodeImpl$Extension4 | |
[1m* [ClassCompiler[39m] [0mCompiling class mirahparser.lang.ast.NodeImpl$Extension5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define-library (pattern-match-lambda) | |
(import (scheme base)) | |
(define-syntax if-identifier | |
(syntax-rules () | |
((_ condition seq alt) | |
(let-syntax ((foo (syntax-rules () ((_) seq)))) | |
(let-syntax ((test (syntax-rules () | |
((_ condition) (foo)) | |
((_ foo) alt)))) | |
(test foo)))))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# HashMap<Integer, String> hash = new HashMap<Integer, String>; | |
hash = HashMap[Integer, String].new | |
# void genericsMethod<T>(); | |
def genericsMethod[T] | |
# void wildcardGenerics<N extends Number>(); | |
def wildcardGenerics[Number as N] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package jp.keen.android; | |
import android.util.Log; | |
import android.content.Context; | |
import android.graphics.Canvas; | |
import android.graphics.Color; | |
import android.graphics.Paint; | |
import android.view.View; | |
import android.view.MotionEvent; | |
import mocl.CL; |