소스 검색

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

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.