Browse Source

Fixes #438.

Herbert Vojčík 12 years ago
parent
commit
f9dbd20b1d
3 changed files with 429 additions and 215 deletions
  1. 214 107
      js/Compiler-IR.deploy.js
  2. 214 107
      js/Compiler-IR.js
  3. 1 1
      st/Compiler-IR.st

File diff suppressed because it is too large
+ 214 - 107
js/Compiler-IR.deploy.js


File diff suppressed because it is too large
+ 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

Some files were not shown because too many files changed in this diff