ソースを参照

pragma for excluding contexts - add sendIdx

Herbert Vojčík 9 年 前
コミット
e3761fe64b
2 ファイル変更220 行追加71 行削除
  1. 216 70
      src/Compiler-IR.js
  2. 4 1
      src/Compiler-IR.st

ファイルの差分が大きいため隠しています
+ 216 - 70
src/Compiler-IR.js


+ 4 - 1
src/Compiler-IR.st

@@ -1283,11 +1283,14 @@ nextPutReturnWith: aBlock
 nextPutSendIndexFor: anIRSend
 	self 
 		nextPutAll: ';'; lf;
+		nextPutAll: '//>>excludeStart("ctx", pragmas.excludeDebugContexts);'; lf;
 		nextPutAll: anIRSend scope alias;
 		nextPutAll: '.sendIdx[';
 		nextPutAll: anIRSend selector asJavascript;
 		nextPutAll: ']=';
-		nextPutAll: anIRSend index asString
+		nextPutAll: anIRSend index asString;
+		nextPutAll: ';'; lf;
+		nextPutAll: '//>>excludeEnd("ctx")'
 !
 
 nextPutSequenceWith: aBlock

この差分においてかなりの量のファイルが変更されているため、一部のファイルを表示していません