浏览代码

Fixes #438.

Herbert Vojčík 12 年之前
父节点
当前提交
f9dbd20b1d
共有 3 个文件被更改,包括 429 次插入215 次删除
  1. 214 107
      js/Compiler-IR.deploy.js
  2. 214 107
      js/Compiler-IR.js
  3. 1 1
      st/Compiler-IR.st

文件差异内容过多而无法显示
+ 214 - 107
js/Compiler-IR.deploy.js


文件差异内容过多而无法显示
+ 214 - 107
js/Compiler-IR.js


+ 1 - 1
st/Compiler-IR.st

@@ -1137,7 +1137,7 @@ nextPutIfElse: aBlock with: ifBlock with: elseBlock
 nextPutMethodDeclaration: aMethod with: aBlock
 	stream
 		nextPutAll: 'smalltalk.method({'; lf;
-		nextPutAll: 'selector: "', aMethod selector, '",'; lf;
+		nextPutAll: 'selector: ', aMethod selector asJavascript, ','; lf;
 		nextPutAll: 'source: ', aMethod source asJavascript, ',';lf.
 	aBlock value.
 	stream

部分文件因为文件数量过多而无法显示