smalltalk.addPackage('Compiler-Tests', {}); smalltalk.addClass('ASTInterpreterTest', smalltalk.TestCase, [], 'Compiler-Tests'); smalltalk.addMethod( "_analyze_forClass_", smalltalk.method({ selector: "analyze:forClass:", fn: function (aNode,aClass){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; _st(_st((smalltalk.SemanticAnalyzer || SemanticAnalyzer))._on_(aClass))._visit_(aNode); $1=aNode; return $1; }, function($ctx1) {$ctx1.fill(self,"analyze:forClass:", [aNode,aClass], {}, smalltalk.ASTInterpreterTest)})} }), smalltalk.ASTInterpreterTest); smalltalk.addMethod( "_interpret_", smalltalk.method({ selector: "interpret:", fn: function (aString){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._interpret_withArguments_(aString,_st((smalltalk.Dictionary || Dictionary))._new()); return $1; }, function($ctx1) {$ctx1.fill(self,"interpret:", [aString], {}, smalltalk.ASTInterpreterTest)})} }), smalltalk.ASTInterpreterTest); smalltalk.addMethod( "_interpret_withArguments_", smalltalk.method({ selector: "interpret:withArguments:", fn: function (aString,aDictionary){ var self=this; var ctx; return smalltalk.withContext(function($ctx1) { var $2,$3,$1; ctx=_st((smalltalk.AIContext || AIContext))._new(); _st(aDictionary)._keysAndValuesDo_((function(key,value){ return smalltalk.withContext(function($ctx2) { return _st(ctx)._localAt_put_(key,value); }, function($ctx2) {$ctx2.fillBlock([key,value], {})})})); $2=_st((smalltalk.ASTInterpreter || ASTInterpreter))._new(); _st($2)._context_(ctx); $3=_st($2)._interpret_(_st(_st(_st(self)._parse_forClass_(aString,(smalltalk.Object || Object)))._nodes())._first()); $1=$3; return $1; }, function($ctx1) {$ctx1.fill(self,"interpret:withArguments:", [aString,aDictionary], {ctx:ctx}, smalltalk.ASTInterpreterTest)})} }), smalltalk.ASTInterpreterTest); smalltalk.addMethod( "_parse_", smalltalk.method({ selector: "parse:", fn: function (aString){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st((smalltalk.Smalltalk || Smalltalk))._current())._parse_(aString); return $1; }, function($ctx1) {$ctx1.fill(self,"parse:", [aString], {}, smalltalk.ASTInterpreterTest)})} }), smalltalk.ASTInterpreterTest); smalltalk.addMethod( "_parse_forClass_", smalltalk.method({ selector: "parse:forClass:", fn: function (aString,aClass){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._analyze_forClass_(_st(self)._parse_(aString),aClass); return $1; }, function($ctx1) {$ctx1.fill(self,"parse:forClass:", [aString,aClass], {}, smalltalk.ASTInterpreterTest)})} }), smalltalk.ASTInterpreterTest); smalltalk.addMethod( "_testBinarySend", smalltalk.method({ selector: "testBinarySend", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._assert_equals_(_st(self)._interpret_("foo 2+3+4"),(9)); return self}, function($ctx1) {$ctx1.fill(self,"testBinarySend", [], {}, smalltalk.ASTInterpreterTest)})} }), smalltalk.ASTInterpreterTest); smalltalk.addMethod( "_testBlockLiteral", smalltalk.method({ selector: "testBlockLiteral", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._assert_equals_(_st(self)._interpret_("foo ^ true ifTrue: [ 1 ] ifFalse: [ 2 ]"),(1)); _st(self)._assert_equals_(_st(self)._interpret_("foo true ifTrue: [ ^ 1 ] ifFalse: [ 2 ]"),(1)); _st(self)._assert_equals_(_st(self)._interpret_("foo ^ false ifTrue: [ 1 ] ifFalse: [ 2 ]"),(2)); return self}, function($ctx1) {$ctx1.fill(self,"testBlockLiteral", [], {}, smalltalk.ASTInterpreterTest)})} }), smalltalk.ASTInterpreterTest); smalltalk.addMethod( "_testCascade", smalltalk.method({ selector: "testCascade", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._assert_equals_(_st(self)._interpret_("foo ^ OrderedCollection new add: 2; add: 3; yourself"),_st((smalltalk.OrderedCollection || OrderedCollection))._with_with_((2),(3))); return self}, function($ctx1) {$ctx1.fill(self,"testCascade", [], {}, smalltalk.ASTInterpreterTest)})} }), smalltalk.ASTInterpreterTest); smalltalk.addMethod( "_testInlinedJSStatement", smalltalk.method({ selector: "testInlinedJSStatement", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._assert_equals_(_st(self)._interpret_("foo "),(5)); _st(self)._assert_equals_(_st(self)._interpret_withArguments_("foo: anInteger ",smalltalk.HashedCollection._fromPairs_([_st("anInteger").__minus_gt((3))])),(5)); return self}, function($ctx1) {$ctx1.fill(self,"testInlinedJSStatement", [], {}, smalltalk.ASTInterpreterTest)})} }), smalltalk.ASTInterpreterTest); smalltalk.addClass('CodeGeneratorTest', smalltalk.TestCase, ['receiver'], 'Compiler-Tests'); smalltalk.addMethod( "_codeGeneratorClass", smalltalk.method({ selector: "codeGeneratorClass", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=(smalltalk.CodeGenerator || CodeGenerator); return $1; }, function($ctx1) {$ctx1.fill(self,"codeGeneratorClass", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_compiler", smalltalk.method({ selector: "compiler", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$3,$1; $2=_st((smalltalk.Compiler || Compiler))._new(); _st($2)._codeGeneratorClass_(_st(self)._codeGeneratorClass()); $3=_st($2)._yourself(); $1=$3; return $1; }, function($ctx1) {$ctx1.fill(self,"compiler", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_setUp", smalltalk.method({ selector: "setUp", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self["@receiver"]=_st(_st(self)._targetClass())._new(); return self}, function($ctx1) {$ctx1.fill(self,"setUp", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_should_return_", smalltalk.method({ selector: "should:return:", fn: function (aString,anObject){ var self=this; var method,result; return smalltalk.withContext(function($ctx1) { method=_st(_st(self)._compiler())._install_forClass_category_(aString,_st(self)._targetClass(),"tests"); result=_st(self["@receiver"])._perform_(_st(method)._selector()); _st(_st(self)._targetClass())._removeCompiledMethod_(method); _st(self)._assert_equals_(anObject,result); return self}, function($ctx1) {$ctx1.fill(self,"should:return:", [aString,anObject], {method:method,result:result}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_targetClass", smalltalk.method({ selector: "targetClass", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=(smalltalk.DoIt || DoIt); return $1; }, function($ctx1) {$ctx1.fill(self,"targetClass", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_tearDown", smalltalk.method({ selector: "tearDown", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return self}, function($ctx1) {$ctx1.fill(self,"tearDown", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testAssignment", smalltalk.method({ selector: "testAssignment", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo | a | a := true ifTrue: [ 1 ]. ^ a",(1)); _st(self)._should_return_("foo | a | a := false ifTrue: [ 1 ]. ^ a",nil); _st(self)._should_return_("foo | a | ^ a := true ifTrue: [ 1 ]",(1)); return self}, function($ctx1) {$ctx1.fill(self,"testAssignment", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testBlockReturn", smalltalk.method({ selector: "testBlockReturn", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo ^ #(1 2 3) collect: [ :each | true ifTrue: [ each + 1 ] ]",[(2), (3), (4)]); _st(self)._should_return_("foo ^ #(1 2 3) collect: [ :each | false ifFalse: [ each + 1 ] ]",[(2), (3), (4)]); _st(self)._should_return_("foo ^ #(1 2 3) collect: [ :each | each odd ifTrue: [ each + 1 ] ifFalse: [ each - 1 ] ]",[(2), (1), (4)]); return self}, function($ctx1) {$ctx1.fill(self,"testBlockReturn", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testCascades", smalltalk.method({ selector: "testCascades", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo ^ Array new add: 3; add: 4; yourself",[(3), (4)]); return self}, function($ctx1) {$ctx1.fill(self,"testCascades", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testDynamicArrayElementsOrdered", smalltalk.method({ selector: "testDynamicArrayElementsOrdered", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo\x0a | x |\x0a x := 1.\x0a ^ { x. true ifTrue: [ x := 2 ] }\x0a",[(1), (2)]); return self}, function($ctx1) {$ctx1.fill(self,"testDynamicArrayElementsOrdered", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testDynamicDictionaryElementsOrdered", smalltalk.method({ selector: "testDynamicDictionaryElementsOrdered", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo\x0a | x |\x0a x := 'foo'->1.\x0a ^ #{ x. (true ifTrue: [ x := 'bar'->2 ]) }\x0a",smalltalk.HashedCollection._fromPairs_([_st("foo").__minus_gt((1)),_st("bar").__minus_gt((2))])); return self}, function($ctx1) {$ctx1.fill(self,"testDynamicDictionaryElementsOrdered", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testInnerTemporalDependentElementsOrdered", smalltalk.method({ selector: "testInnerTemporalDependentElementsOrdered", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo\x0a | x |\x0a x := Array.\x0a ^ x with: 'foo'->x with: 'bar'->(true ifTrue: [ x := 2 ])\x0a",[_st("foo").__minus_gt((smalltalk.Array || Array)),_st("bar").__minus_gt((2))]); _st(self)._should_return_("foo\x0a | x |\x0a x := 1.\x0a ^ Array with: 'foo'->x with: 'bar'->(true ifTrue: [ x := 2 ])\x0a",[_st("foo").__minus_gt((1)),_st("bar").__minus_gt((2))]); _st(self)._should_return_("foo\x0a | x |\x0a x := 1.\x0a ^ { 'foo'->x. 'bar'->(true ifTrue: [ x := 2 ]) }\x0a",[_st("foo").__minus_gt((1)),_st("bar").__minus_gt((2))]); _st(self)._should_return_("foo\x0a | x |\x0a x := 1.\x0a ^ #{ 'foo'->x. 'bar'->(true ifTrue: [ x := 2 ]) }\x0a",smalltalk.HashedCollection._fromPairs_([_st("foo").__minus_gt((1)),_st("bar").__minus_gt((2))])); return self}, function($ctx1) {$ctx1.fill(self,"testInnerTemporalDependentElementsOrdered", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testLiterals", smalltalk.method({ selector: "testLiterals", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo ^ 1",(1)); _st(self)._should_return_("foo ^ 'hello'","hello"); _st(self)._should_return_("foo ^ #(1 2 3 4)",[(1), (2), (3), (4)]); _st(self)._should_return_("foo ^ {1. [:x | x ] value: 2. 3. [4] value}",[(1), (2), (3), (4)]); _st(self)._should_return_("foo ^ true",true); _st(self)._should_return_("foo ^ false",false); _st(self)._should_return_("foo ^ #{1->2. 3->4}",smalltalk.HashedCollection._fromPairs_([_st((1)).__minus_gt((2)),_st((3)).__minus_gt((4))])); _st(self)._should_return_("foo ^ #hello",smalltalk.symbolFor("hello")); _st(self)._should_return_("foo ^ -123.456",(-123.456)); return self}, function($ctx1) {$ctx1.fill(self,"testLiterals", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testLocalReturn", smalltalk.method({ selector: "testLocalReturn", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo ^ 1",(1)); _st(self)._should_return_("foo ^ 1 + 1",(2)); _st(self)._should_return_("foo ",self["@receiver"]); _st(self)._should_return_("foo self asString",self["@receiver"]); _st(self)._should_return_("foo | a b | a := 1. b := 2. ^ a + b",(3)); return self}, function($ctx1) {$ctx1.fill(self,"testLocalReturn", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testMessageSends", smalltalk.method({ selector: "testMessageSends", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo ^ 1 asString","1"); _st(self)._should_return_("foo ^ 1 + 1",(2)); _st(self)._should_return_("foo ^ 1 + 2 * 3",(9)); _st(self)._should_return_("foo ^ 1 to: 3",[(1), (2), (3)]); _st(self)._should_return_("foo ^ 1 to: 5 by: 2",[(1), (3), (5)]); return self}, function($ctx1) {$ctx1.fill(self,"testMessageSends", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testNestedIfTrue", smalltalk.method({ selector: "testNestedIfTrue", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo ^ true ifTrue: [ false ifFalse: [ 1 ] ]",(1)); _st(self)._should_return_("foo ^ true ifTrue: [ false ifTrue: [ 1 ] ]",nil); _st(self)._should_return_("foo true ifTrue: [ false ifFalse: [ ^ 1 ] ]",(1)); _st(self)._should_return_("foo true ifTrue: [ false ifTrue: [ ^ 1 ] ]",self["@receiver"]); return self}, function($ctx1) {$ctx1.fill(self,"testNestedIfTrue", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testNonLocalReturn", smalltalk.method({ selector: "testNonLocalReturn", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo [ ^ 1 ] value",(1)); _st(self)._should_return_("foo [ ^ 1 + 1 ] value",(2)); _st(self)._should_return_("foo | a b | a := 1. b := 2. [ ^ a + b ] value. self halt",(3)); _st(self)._should_return_("foo [ :x | ^ x + x ] value: 4. ^ 2",(8)); return self}, function($ctx1) {$ctx1.fill(self,"testNonLocalReturn", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testSendReceiverAndArgumentsOrdered", smalltalk.method({ selector: "testSendReceiverAndArgumentsOrdered", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo\x0a | x |\x0a x := 1.\x0a ^ Array with: x with: (true ifTrue: [ x := 2 ])\x0a",[(1), (2)]); _st(self)._should_return_("foo\x0a | x |\x0a x := Array.\x0a ^ x with: x with: (true ifTrue: [ x := 2 ])\x0a",[(smalltalk.Array || Array),(2)]); return self}, function($ctx1) {$ctx1.fill(self,"testSendReceiverAndArgumentsOrdered", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testifFalse", smalltalk.method({ selector: "testifFalse", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo true ifFalse: [ ^ 1 ]",self["@receiver"]); _st(self)._should_return_("foo false ifFalse: [ ^ 2 ]",(2)); _st(self)._should_return_("foo ^ true ifFalse: [ 1 ]",nil); _st(self)._should_return_("foo ^ false ifFalse: [ 2 ]",(2)); return self}, function($ctx1) {$ctx1.fill(self,"testifFalse", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testifFalseIfTrue", smalltalk.method({ selector: "testifFalseIfTrue", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo true ifFalse: [ ^ 1 ] ifTrue: [ ^ 2 ]",(2)); _st(self)._should_return_("foo false ifFalse: [ ^ 2 ] ifTrue: [ ^1 ]",(2)); _st(self)._should_return_("foo ^ true ifFalse: [ 1 ] ifTrue: [ 2 ]",(2)); _st(self)._should_return_("foo ^ false ifFalse: [ 2 ] ifTrue: [ 1 ]",(2)); return self}, function($ctx1) {$ctx1.fill(self,"testifFalseIfTrue", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testifNil", smalltalk.method({ selector: "testifNil", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo ^ 1 ifNil: [ 2 ]",(1)); _st(self)._should_return_("foo ^ nil ifNil: [ 2 ]",(2)); _st(self)._should_return_("foo 1 ifNil: [ ^ 2 ]",self["@receiver"]); _st(self)._should_return_("foo nil ifNil: [ ^ 2 ]",(2)); return self}, function($ctx1) {$ctx1.fill(self,"testifNil", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testifNilIfNotNil", smalltalk.method({ selector: "testifNilIfNotNil", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo ^ 1 ifNil: [ 2 ] ifNotNil: [ 3 ]",(3)); _st(self)._should_return_("foo ^ nil ifNil: [ 2 ] ifNotNil: [ 3 ]",(2)); _st(self)._should_return_("foo 1 ifNil: [ ^ 2 ] ifNotNil: [ ^3 ]",(3)); _st(self)._should_return_("foo nil ifNil: [ ^ 2 ] ifNotNil: [ ^3 ]",(2)); return self}, function($ctx1) {$ctx1.fill(self,"testifNilIfNotNil", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testifNotNil", smalltalk.method({ selector: "testifNotNil", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo ^ 1 ifNotNil: [ 2 ]",(2)); _st(self)._should_return_("foo ^ nil ifNotNil: [ 2 ]",nil); _st(self)._should_return_("foo 1 ifNotNil: [ ^ 2 ]",(2)); _st(self)._should_return_("foo nil ifNotNil: [ ^ 2 ]",self["@receiver"]); return self}, function($ctx1) {$ctx1.fill(self,"testifNotNil", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testifTrue", smalltalk.method({ selector: "testifTrue", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo false ifTrue: [ ^ 1 ]",self["@receiver"]); _st(self)._should_return_("foo true ifTrue: [ ^ 2 ]",(2)); _st(self)._should_return_("foo ^ false ifTrue: [ 1 ]",nil); _st(self)._should_return_("foo ^ true ifTrue: [ 2 ]",(2)); return self}, function($ctx1) {$ctx1.fill(self,"testifTrue", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addMethod( "_testifTrueIfFalse", smalltalk.method({ selector: "testifTrueIfFalse", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._should_return_("foo false ifTrue: [ ^ 1 ] ifFalse: [ ^2 ]",(2)); _st(self)._should_return_("foo true ifTrue: [ ^ 1 ] ifFalse: [ ^ 2 ]",(1)); _st(self)._should_return_("foo ^ false ifTrue: [ 2 ] ifFalse: [ 1 ]",(1)); _st(self)._should_return_("foo ^ true ifTrue: [ 2 ] ifFalse: [ 1 ]",(2)); return self}, function($ctx1) {$ctx1.fill(self,"testifTrueIfFalse", [], {}, smalltalk.CodeGeneratorTest)})} }), smalltalk.CodeGeneratorTest); smalltalk.addClass('InliningCodeGeneratorTest', smalltalk.CodeGeneratorTest, [], 'Compiler-Tests'); smalltalk.addMethod( "_codeGeneratorClass", smalltalk.method({ selector: "codeGeneratorClass", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=(smalltalk.InliningCodeGenerator || InliningCodeGenerator); return $1; }, function($ctx1) {$ctx1.fill(self,"codeGeneratorClass", [], {}, smalltalk.InliningCodeGeneratorTest)})} }), smalltalk.InliningCodeGeneratorTest); smalltalk.addClass('ScopeVarTest', smalltalk.TestCase, [], 'Compiler-Tests'); smalltalk.addMethod( "_testClassRefVar", smalltalk.method({ selector: "testClassRefVar", fn: function (){ var self=this; var node; return smalltalk.withContext(function($ctx1) { var $1,$2; $1=_st((smalltalk.ClassReferenceNode || ClassReferenceNode))._new(); _st($1)._value_("Object"); $2=_st($1)._yourself(); node=$2; _st(_st((smalltalk.SemanticAnalyzer || SemanticAnalyzer))._new())._visit_(node); _st(self)._assert_(_st(_st(node)._binding())._isClassRefVar()); return self}, function($ctx1) {$ctx1.fill(self,"testClassRefVar", [], {node:node}, smalltalk.ScopeVarTest)})} }), smalltalk.ScopeVarTest); smalltalk.addMethod( "_testInstanceVar", smalltalk.method({ selector: "testInstanceVar", fn: function (){ var self=this; var node,scope; return smalltalk.withContext(function($ctx1) { var $1,$2; $1=_st((smalltalk.VariableNode || VariableNode))._new(); _st($1)._value_("bzzz"); $2=_st($1)._yourself(); node=$2; scope=_st((smalltalk.MethodLexicalScope || MethodLexicalScope))._new(); _st(scope)._addIVar_("bzzz"); _st(self)._assert_(_st(_st(scope)._bindingFor_(node))._isInstanceVar()); return self}, function($ctx1) {$ctx1.fill(self,"testInstanceVar", [], {node:node,scope:scope}, smalltalk.ScopeVarTest)})} }), smalltalk.ScopeVarTest); smalltalk.addMethod( "_testPseudoVar", smalltalk.method({ selector: "testPseudoVar", fn: function (){ var self=this; var node,pseudoVars; return smalltalk.withContext(function($ctx1) { var $1,$2; pseudoVars=["self", "super", "true", "false", "nil"]; _st(pseudoVars)._do_((function(each){ return smalltalk.withContext(function($ctx2) { $1=_st((smalltalk.VariableNode || VariableNode))._new(); _st($1)._value_(each); $2=_st($1)._yourself(); node=$2; node; return _st(self)._assert_(_st(_st(_st((smalltalk.MethodLexicalScope || MethodLexicalScope))._new())._bindingFor_(node))._isPseudoVar()); }, function($ctx2) {$ctx2.fillBlock([each], {})})})); return self}, function($ctx1) {$ctx1.fill(self,"testPseudoVar", [], {node:node,pseudoVars:pseudoVars}, smalltalk.ScopeVarTest)})} }), smalltalk.ScopeVarTest); smalltalk.addMethod( "_testTempVar", smalltalk.method({ selector: "testTempVar", fn: function (){ var self=this; var node,scope; return smalltalk.withContext(function($ctx1) { var $1,$2; $1=_st((smalltalk.VariableNode || VariableNode))._new(); _st($1)._value_("bzzz"); $2=_st($1)._yourself(); node=$2; scope=_st((smalltalk.MethodLexicalScope || MethodLexicalScope))._new(); _st(scope)._addTemp_("bzzz"); _st(self)._assert_(_st(_st(scope)._bindingFor_(node))._isTempVar()); return self}, function($ctx1) {$ctx1.fill(self,"testTempVar", [], {node:node,scope:scope}, smalltalk.ScopeVarTest)})} }), smalltalk.ScopeVarTest); smalltalk.addMethod( "_testUnknownVar", smalltalk.method({ selector: "testUnknownVar", fn: function (){ var self=this; var node; return smalltalk.withContext(function($ctx1) { var $1,$2; $1=_st((smalltalk.VariableNode || VariableNode))._new(); _st($1)._value_("bzzz"); $2=_st($1)._yourself(); node=$2; _st(self)._assert_(_st(_st(_st((smalltalk.MethodLexicalScope || MethodLexicalScope))._new())._bindingFor_(node))._isNil()); return self}, function($ctx1) {$ctx1.fill(self,"testUnknownVar", [], {node:node}, smalltalk.ScopeVarTest)})} }), smalltalk.ScopeVarTest); smalltalk.addClass('SemanticAnalyzerTest', smalltalk.TestCase, ['analyzer'], 'Compiler-Tests'); smalltalk.addMethod( "_setUp", smalltalk.method({ selector: "setUp", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self["@analyzer"]=_st((smalltalk.SemanticAnalyzer || SemanticAnalyzer))._on_((smalltalk.Object || Object)); return self}, function($ctx1) {$ctx1.fill(self,"setUp", [], {}, smalltalk.SemanticAnalyzerTest)})} }), smalltalk.SemanticAnalyzerTest); smalltalk.addMethod( "_testAssignment", smalltalk.method({ selector: "testAssignment", fn: function (){ var self=this; var src,ast; return smalltalk.withContext(function($ctx1) { src="foo self := 1"; ast=_st(smalltalk)._parse_(src); _st(self)._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st(self["@analyzer"])._visit_(ast); }, function($ctx2) {$ctx2.fillBlock([], {})})}),(smalltalk.InvalidAssignmentError || InvalidAssignmentError)); return self}, function($ctx1) {$ctx1.fill(self,"testAssignment", [], {src:src,ast:ast}, smalltalk.SemanticAnalyzerTest)})} }), smalltalk.SemanticAnalyzerTest); smalltalk.addMethod( "_testNonLocalReturn", smalltalk.method({ selector: "testNonLocalReturn", fn: function (){ var self=this; var src,ast; return smalltalk.withContext(function($ctx1) { src="foo | a | a + 1. ^ a"; ast=_st(smalltalk)._parse_(src); _st(self["@analyzer"])._visit_(ast); _st(self)._deny_(_st(_st(ast)._scope())._hasNonLocalReturn()); return self}, function($ctx1) {$ctx1.fill(self,"testNonLocalReturn", [], {src:src,ast:ast}, smalltalk.SemanticAnalyzerTest)})} }), smalltalk.SemanticAnalyzerTest); smalltalk.addMethod( "_testNonLocalReturn2", smalltalk.method({ selector: "testNonLocalReturn2", fn: function (){ var self=this; var src,ast; return smalltalk.withContext(function($ctx1) { src="foo | a | a + 1. [ [ ^ a] ]"; ast=_st(smalltalk)._parse_(src); _st(self["@analyzer"])._visit_(ast); _st(self)._assert_(_st(_st(ast)._scope())._hasNonLocalReturn()); return self}, function($ctx1) {$ctx1.fill(self,"testNonLocalReturn2", [], {src:src,ast:ast}, smalltalk.SemanticAnalyzerTest)})} }), smalltalk.SemanticAnalyzerTest); smalltalk.addMethod( "_testScope", smalltalk.method({ selector: "testScope", fn: function (){ var self=this; var src,ast; return smalltalk.withContext(function($ctx1) { src="foo | a | a + 1. [ | b | b := a ]"; ast=_st(smalltalk)._parse_(src); _st(self["@analyzer"])._visit_(ast); _st(self)._deny_(_st(_st(_st(_st(_st(_st(ast)._nodes())._first())._nodes())._last())._scope()).__eq_eq(_st(ast)._scope())); return self}, function($ctx1) {$ctx1.fill(self,"testScope", [], {src:src,ast:ast}, smalltalk.SemanticAnalyzerTest)})} }), smalltalk.SemanticAnalyzerTest); smalltalk.addMethod( "_testScope2", smalltalk.method({ selector: "testScope2", fn: function (){ var self=this; var src,ast; return smalltalk.withContext(function($ctx1) { src="foo | a | a + 1. [ [ | b | b := a ] ]"; ast=_st(smalltalk)._parse_(src); _st(self["@analyzer"])._visit_(ast); _st(self)._deny_(_st(_st(_st(_st(_st(_st(_st(_st(_st(_st(ast)._nodes())._first())._nodes())._last())._nodes())._first())._nodes())._first())._scope()).__eq_eq(_st(ast)._scope())); return self}, function($ctx1) {$ctx1.fill(self,"testScope2", [], {src:src,ast:ast}, smalltalk.SemanticAnalyzerTest)})} }), smalltalk.SemanticAnalyzerTest); smalltalk.addMethod( "_testScopeLevel", smalltalk.method({ selector: "testScopeLevel", fn: function (){ var self=this; var src,ast; return smalltalk.withContext(function($ctx1) { src="foo | a | a + 1. [ [ | b | b := a ] ]"; ast=_st(smalltalk)._parse_(src); _st(self["@analyzer"])._visit_(ast); _st(self)._assert_(_st(_st(_st(ast)._scope())._scopeLevel()).__eq((1))); _st(self)._assert_(_st(_st(_st(_st(_st(_st(_st(_st(_st(_st(_st(ast)._nodes())._first())._nodes())._last())._nodes())._first())._nodes())._first())._scope())._scopeLevel()).__eq((3))); return self}, function($ctx1) {$ctx1.fill(self,"testScopeLevel", [], {src:src,ast:ast}, smalltalk.SemanticAnalyzerTest)})} }), smalltalk.SemanticAnalyzerTest); smalltalk.addMethod( "_testUnknownVariables", smalltalk.method({ selector: "testUnknownVariables", fn: function (){ var self=this; var src,ast; return smalltalk.withContext(function($ctx1) { src="foo | a | b + a"; ast=_st(smalltalk)._parse_(src); _st(self)._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st(self["@analyzer"])._visit_(ast); }, function($ctx2) {$ctx2.fillBlock([], {})})}),(smalltalk.UnknownVariableError || UnknownVariableError)); return self}, function($ctx1) {$ctx1.fill(self,"testUnknownVariables", [], {src:src,ast:ast}, smalltalk.SemanticAnalyzerTest)})} }), smalltalk.SemanticAnalyzerTest); smalltalk.addMethod( "_testUnknownVariablesWithScope", smalltalk.method({ selector: "testUnknownVariablesWithScope", fn: function (){ var self=this; var src,ast; return smalltalk.withContext(function($ctx1) { src="foo | a b | [ c + 1. [ a + 1. d + 1 ]]"; ast=_st(smalltalk)._parse_(src); _st(self)._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st(self["@analyzer"])._visit_(ast); }, function($ctx2) {$ctx2.fillBlock([], {})})}),(smalltalk.UnknownVariableError || UnknownVariableError)); return self}, function($ctx1) {$ctx1.fill(self,"testUnknownVariablesWithScope", [], {src:src,ast:ast}, smalltalk.SemanticAnalyzerTest)})} }), smalltalk.SemanticAnalyzerTest); smalltalk.addMethod( "_testVariableShadowing", smalltalk.method({ selector: "testVariableShadowing", fn: function (){ var self=this; var src,ast; return smalltalk.withContext(function($ctx1) { src="foo | a | a + 1"; ast=_st(smalltalk)._parse_(src); _st(self["@analyzer"])._visit_(ast); return self}, function($ctx1) {$ctx1.fill(self,"testVariableShadowing", [], {src:src,ast:ast}, smalltalk.SemanticAnalyzerTest)})} }), smalltalk.SemanticAnalyzerTest); smalltalk.addMethod( "_testVariableShadowing2", smalltalk.method({ selector: "testVariableShadowing2", fn: function (){ var self=this; var src,ast; return smalltalk.withContext(function($ctx1) { src="foo | a | a + 1. [ | a | a := 2 ]"; ast=_st(smalltalk)._parse_(src); _st(self)._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st(self["@analyzer"])._visit_(ast); }, function($ctx2) {$ctx2.fillBlock([], {})})}),(smalltalk.ShadowingVariableError || ShadowingVariableError)); return self}, function($ctx1) {$ctx1.fill(self,"testVariableShadowing2", [], {src:src,ast:ast}, smalltalk.SemanticAnalyzerTest)})} }), smalltalk.SemanticAnalyzerTest); smalltalk.addMethod( "_testVariableShadowing3", smalltalk.method({ selector: "testVariableShadowing3", fn: function (){ var self=this; var src,ast; return smalltalk.withContext(function($ctx1) { src="foo | a | a + 1. [ | b | b := 2 ]"; ast=_st(smalltalk)._parse_(src); _st(self["@analyzer"])._visit_(ast); return self}, function($ctx1) {$ctx1.fill(self,"testVariableShadowing3", [], {src:src,ast:ast}, smalltalk.SemanticAnalyzerTest)})} }), smalltalk.SemanticAnalyzerTest); smalltalk.addMethod( "_testVariableShadowing4", smalltalk.method({ selector: "testVariableShadowing4", fn: function (){ var self=this; var src,ast; return smalltalk.withContext(function($ctx1) { src="foo | a | a + 1. [ [ [ | b | b := 2 ] ] ]"; ast=_st(smalltalk)._parse_(src); _st(self["@analyzer"])._visit_(ast); return self}, function($ctx1) {$ctx1.fill(self,"testVariableShadowing4", [], {src:src,ast:ast}, smalltalk.SemanticAnalyzerTest)})} }), smalltalk.SemanticAnalyzerTest); smalltalk.addMethod( "_testVariableShadowing5", smalltalk.method({ selector: "testVariableShadowing5", fn: function (){ var self=this; var src,ast; return smalltalk.withContext(function($ctx1) { src="foo | a | a + 1. [ [ [ | a | a := 2 ] ] ]"; ast=_st(smalltalk)._parse_(src); _st(self)._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st(self["@analyzer"])._visit_(ast); }, function($ctx2) {$ctx2.fillBlock([], {})})}),(smalltalk.ShadowingVariableError || ShadowingVariableError)); return self}, function($ctx1) {$ctx1.fill(self,"testVariableShadowing5", [], {src:src,ast:ast}, smalltalk.SemanticAnalyzerTest)})} }), smalltalk.SemanticAnalyzerTest); smalltalk.addMethod( "_testVariablesLookup", smalltalk.method({ selector: "testVariablesLookup", fn: function (){ var self=this; var src,ast; return smalltalk.withContext(function($ctx1) { src="foo | a | a + 1. [ | b | b := a ]"; ast=_st(smalltalk)._parse_(src); _st(self["@analyzer"])._visit_(ast); _st(self)._assert_(_st(_st(_st(_st(_st(_st(_st(ast)._nodes())._first())._nodes())._first())._receiver())._binding())._isTempVar()); _st(self)._assert_(_st(_st(_st(_st(_st(_st(_st(_st(ast)._nodes())._first())._nodes())._first())._receiver())._binding())._scope()).__eq_eq(_st(ast)._scope())); _st(self)._assert_(_st(_st(_st(_st(_st(_st(_st(_st(_st(_st(_st(ast)._nodes())._first())._nodes())._last())._nodes())._first())._nodes())._first())._left())._binding())._isTempVar()); _st(self)._assert_(_st(_st(_st(_st(_st(_st(_st(_st(_st(_st(_st(_st(ast)._nodes())._first())._nodes())._last())._nodes())._first())._nodes())._first())._left())._binding())._scope()).__eq_eq(_st(_st(_st(_st(_st(ast)._nodes())._first())._nodes())._last())._scope())); return self}, function($ctx1) {$ctx1.fill(self,"testVariablesLookup", [], {src:src,ast:ast}, smalltalk.SemanticAnalyzerTest)})} }), smalltalk.SemanticAnalyzerTest);