123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600 |
- smalltalk.addClass('Counter', smalltalk.Widget, ['count', 'header'], 'Examples');
- smalltalk.addMethod(
- '_increase',
- smalltalk.method({
- selector: 'increase',
- fn: function (){
- var self=this;
- self['@count']=smalltalk.send(self['@count'], "__plus", [(1)]);
- smalltalk.send(self['@header'], "_contents_", [(function(html){return smalltalk.send(html, "_with_", [smalltalk.send(self['@count'], "_asString", [])]);})]);
- return self;}
- }),
- smalltalk.Counter);
- smalltalk.addMethod(
- '_decrease',
- smalltalk.method({
- selector: 'decrease',
- fn: function (){
- var self=this;
- self['@count']=smalltalk.send(self['@count'], "__minus", [(1)]);
- smalltalk.send(self['@header'], "_contents_", [(function(html){return smalltalk.send(html, "_with_", [smalltalk.send(self['@count'], "_asString", [])]);})]);
- return self;}
- }),
- smalltalk.Counter);
- smalltalk.addMethod(
- '_initialize',
- smalltalk.method({
- selector: 'initialize',
- fn: function (){
- var self=this;
- smalltalk.send(self, "_initialize", [], smalltalk.Widget);
- self['@count']=(0);
- return self;}
- }),
- smalltalk.Counter);
- smalltalk.addMethod(
- '_renderOn_',
- smalltalk.method({
- selector: 'renderOn:',
- fn: function (html){
- var self=this;
- self['@header']=(function($rec){smalltalk.send($rec, "_with_", [smalltalk.send(self['@count'], "_asString", [])]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(html, "_h1", []));
- (function($rec){smalltalk.send($rec, "_with_", [unescape("++")]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_increase", []);})]);})(smalltalk.send(html, "_button", []));
- (function($rec){smalltalk.send($rec, "_with_", [unescape("--")]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_decrease", []);})]);})(smalltalk.send(html, "_button", []));
- return self;}
- }),
- smalltalk.Counter);
- smalltalk.addClass('Tetris', smalltalk.Widget, ['renderingContext', 'timer', 'speed', 'score', 'rows', 'movingPiece'], 'Examples');
- smalltalk.addMethod(
- '_width',
- smalltalk.method({
- selector: 'width',
- fn: function (){
- var self=this;
- return smalltalk.send(smalltalk.send(self, "_class", []), "_width", []);
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_height',
- smalltalk.method({
- selector: 'height',
- fn: function (){
- var self=this;
- return smalltalk.send(smalltalk.send(self, "_class", []), "_height", []);
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_squares',
- smalltalk.method({
- selector: 'squares',
- fn: function (){
- var self=this;
- return smalltalk.send(smalltalk.send(self, "_class", []), "_squares", []);
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_gluePiece_',
- smalltalk.method({
- selector: 'gluePiece:',
- fn: function (aPiece){
- var self=this;
- smalltalk.send(aPiece, "_glueOn_", [self]);
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_rows',
- smalltalk.method({
- selector: 'rows',
- fn: function (){
- var self=this;
- return self['@rows'];
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_addRow_',
- smalltalk.method({
- selector: 'addRow:',
- fn: function (aCollection){
- var self=this;
- smalltalk.send(smalltalk.send(self, "_rows", []), "_add_", [aCollection]);
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_startNewGame',
- smalltalk.method({
- selector: 'startNewGame',
- fn: function (){
- var self=this;
- smalltalk.send(self, "_newGame", []);
- smalltalk.send(self['@timer'], "_ifNotNil_", [(function(){return smalltalk.send(self['@timer'], "_clearInterval", []);})]);
- self['@timer']=smalltalk.send((function(){return smalltalk.send(self, "_nextStep", []);}), "_valueWithInterval_", [self['@speed']]);
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_nextStep',
- smalltalk.method({
- selector: 'nextStep',
- fn: function (){
- var self=this;
- smalltalk.send(self['@movingPiece'], "_ifNil_", [(function(){return smalltalk.send(self, "_newPiece", []);})]);
- smalltalk.send(smalltalk.send(self['@movingPiece'], "_canMoveIn_", [self]), "_ifTrue_ifFalse_", [(function(){return smalltalk.send(self['@movingPiece'], "_position_", [smalltalk.send(smalltalk.send(self['@movingPiece'], "_position", []), "__plus", [smalltalk.send((0), "__at", [(1)])])]);}), (function(){return smalltalk.send(self, "_newPiece", []);})]);
- smalltalk.send(self, "_redraw", []);
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_redraw',
- smalltalk.method({
- selector: 'redraw',
- fn: function (){
- var self=this;
- smalltalk.send(self['@renderingContext'], "_clearRectFrom_to_", [smalltalk.send((0), "__at", [smalltalk.send(self, "_width", [])]), smalltalk.send((0), "__at", [smalltalk.send(self, "_height", [])])]);
- (function($rec){smalltalk.send($rec, "_drawMap", []);return smalltalk.send($rec, "_drawPiece", []);})(self);
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_drawMap',
- smalltalk.method({
- selector: 'drawMap',
- fn: function (){
- var self=this;
- (function($rec){smalltalk.send($rec, "_fillStyle_", [unescape("%23fafafa")]);return smalltalk.send($rec, "_fillRectFrom_to_", [smalltalk.send((0), "__at", [(0)]), smalltalk.send(smalltalk.send(self, "_width", []), "__at", [smalltalk.send(self, "_height", [])])]);})(self['@renderingContext']);
- (function($rec){smalltalk.send($rec, "_lineWidth_", [(0.5)]);return smalltalk.send($rec, "_strokeStyle_", [unescape("%23999")]);})(self['@renderingContext']);
- smalltalk.send((0), "_to_do_", [smalltalk.send(smalltalk.send(smalltalk.send(self, "_class", []), "_squares", []), "_x", []), (function(each){var x=nil;
- x=smalltalk.send(each, "__star", [smalltalk.send(smalltalk.send(self, "_class", []), "_squareSize", [])]);return smalltalk.send(self, "_drawLineFrom_to_", [smalltalk.send(x, "__at", [(0)]), smalltalk.send(x, "__at", [smalltalk.send(self, "_height", [])])]);})]);
- smalltalk.send((0), "_to_do_", [smalltalk.send(smalltalk.send(smalltalk.send(self, "_class", []), "_squares", []), "_y", []), (function(each){var y=nil;
- y=smalltalk.send(each, "__star", [smalltalk.send(smalltalk.send(self, "_class", []), "_squareSize", [])]);return smalltalk.send(self, "_drawLineFrom_to_", [smalltalk.send((0), "__at", [y]), smalltalk.send(smalltalk.send(self, "_width", []), "__at", [y])]);})]);
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_drawLineFrom_to_',
- smalltalk.method({
- selector: 'drawLineFrom:to:',
- fn: function (aPoint, anotherPoint){
- var self=this;
- (function($rec){smalltalk.send($rec, "_beginPath", []);smalltalk.send($rec, "_moveTo_", [aPoint]);smalltalk.send($rec, "_lineTo_", [anotherPoint]);return smalltalk.send($rec, "_stroke", []);})(self['@renderingContext']);
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_newGame',
- smalltalk.method({
- selector: 'newGame',
- fn: function (){
- var self=this;
- self['@rows']=[];
- self['@movingPiece']=nil;
- self['@speed']=(200);
- self['@score']=(0);
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_newPiece',
- smalltalk.method({
- selector: 'newPiece',
- fn: function (){
- var self=this;
- self['@movingPiece']=smalltalk.send(smalltalk.TetrisPiece, "_atRandom", []);
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_drawRows',
- smalltalk.method({
- selector: 'drawRows',
- fn: function (){
- var self=this;
- smalltalk.send(smalltalk.send(self, "_rows", []), "_do_", [(function(each){return nil;})]);
- smalltalk.send(self['@movingPiece'], "_ifNotNil_", [(function(){return smalltalk.send(self['@movingPiece'], "_drawOn_", [self['@renderingContext']]);})]);
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_drawPiece',
- smalltalk.method({
- selector: 'drawPiece',
- fn: function (){
- var self=this;
- smalltalk.send(self['@movingPiece'], "_ifNotNil_", [(function(){return smalltalk.send(self['@movingPiece'], "_drawOn_", [self['@renderingContext']]);})]);
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_initialize',
- smalltalk.method({
- selector: 'initialize',
- fn: function (){
- var self=this;
- smalltalk.send(self, "_initialize", [], smalltalk.Widget);
- smalltalk.send(self, "_newGame", []);
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_renderOn_',
- smalltalk.method({
- selector: 'renderOn:',
- fn: function (html){
- var self=this;
- (function($rec){smalltalk.send($rec, "_class_", ["tetris"]);return smalltalk.send($rec, "_with_", [(function(){smalltalk.send(smalltalk.send(html, "_h3", []), "_with_", ["Tetris"]);smalltalk.send(self, "_renderCanvasOn_", [html]);return smalltalk.send(self, "_renderButtonsOn_", [html]);})]);})(smalltalk.send(html, "_div", []));
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_renderCanvasOn_',
- smalltalk.method({
- selector: 'renderCanvasOn:',
- fn: function (html){
- var self=this;
- var canvas=nil;
- canvas=smalltalk.send(html, "_canvas", []);
- smalltalk.send(canvas, "_at_put_", ["width", smalltalk.send(smalltalk.send(self, "_width", []), "_asString", [])]);
- smalltalk.send(canvas, "_at_put_", ["height", smalltalk.send(smalltalk.send(self, "_height", []), "_asString", [])]);
- self['@renderingContext']=smalltalk.send(smalltalk.CanvasRenderingContext, "_tagBrush_", [canvas]);
- smalltalk.send(self, "_redraw", []);
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_renderButtonsOn_',
- smalltalk.method({
- selector: 'renderButtonsOn:',
- fn: function (html){
- var self=this;
- (function($rec){smalltalk.send($rec, "_class_", ["tetris_buttons"]);return smalltalk.send($rec, "_with_", [(function(){(function($rec){smalltalk.send($rec, "_with_", ["New game"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_startNewGame", []);})]);})(smalltalk.send(html, "_button", []));return (function($rec){smalltalk.send($rec, "_with_", [unescape("play/pause")]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_update", []);})]);})(smalltalk.send(html, "_button", []));})]);})(smalltalk.send(html, "_div", []));
- return self;}
- }),
- smalltalk.Tetris);
- smalltalk.addMethod(
- '_squareSize',
- smalltalk.method({
- selector: 'squareSize',
- fn: function (){
- var self=this;
- return (22);
- return self;}
- }),
- smalltalk.Tetris.klass);
- smalltalk.addMethod(
- '_width',
- smalltalk.method({
- selector: 'width',
- fn: function (){
- var self=this;
- return smalltalk.send(smalltalk.send(self, "_squareSize", []), "__star", [smalltalk.send(smalltalk.send(self, "_squares", []), "_x", [])]);
- return self;}
- }),
- smalltalk.Tetris.klass);
- smalltalk.addMethod(
- '_height',
- smalltalk.method({
- selector: 'height',
- fn: function (){
- var self=this;
- return smalltalk.send(smalltalk.send(self, "_squareSize", []), "__star", [smalltalk.send(smalltalk.send(self, "_squares", []), "_y", [])]);
- return self;}
- }),
- smalltalk.Tetris.klass);
- smalltalk.addMethod(
- '_squares',
- smalltalk.method({
- selector: 'squares',
- fn: function (){
- var self=this;
- return smalltalk.send((10), "__at", [(15)]);
- return self;}
- }),
- smalltalk.Tetris.klass);
- smalltalk.addClass('TetrisPiece', smalltalk.Widget, ['rotation', 'position'], 'Examples');
- smalltalk.addMethod(
- '_rotation',
- smalltalk.method({
- selector: 'rotation',
- fn: function (){
- var self=this;
- return smalltalk.send(self['@rotation'], "_ifNil_", [(function(){return self['@rotation']=(1);})]);
- return self;}
- }),
- smalltalk.TetrisPiece);
- smalltalk.addMethod(
- '_rotation_',
- smalltalk.method({
- selector: 'rotation:',
- fn: function (aNumber){
- var self=this;
- self['@rotation']=aNumber;
- return self;}
- }),
- smalltalk.TetrisPiece);
- smalltalk.addMethod(
- '_position',
- smalltalk.method({
- selector: 'position',
- fn: function (){
- var self=this;
- return smalltalk.send(self['@position'], "_ifNil_", [(function(){return smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.Tetris, "_squares", []), "_x", []), "__slash", [(2)]), "__minus", [(1)]), "__at", [(0)]);})]);
- return self;}
- }),
- smalltalk.TetrisPiece);
- smalltalk.addMethod(
- '_position_',
- smalltalk.method({
- selector: 'position:',
- fn: function (aPoint){
- var self=this;
- return self['@position']=aPoint;
- return self;}
- }),
- smalltalk.TetrisPiece);
- smalltalk.addMethod(
- '_bounds',
- smalltalk.method({
- selector: 'bounds',
- fn: function (){
- var self=this;
- smalltalk.send(self, "_subclassResponsibility", []);
- return self;}
- }),
- smalltalk.TetrisPiece);
- smalltalk.addMethod(
- '_color',
- smalltalk.method({
- selector: 'color',
- fn: function (){
- var self=this;
- return unescape("%23afa");
- return self;}
- }),
- smalltalk.TetrisPiece);
- smalltalk.addMethod(
- '_height',
- smalltalk.method({
- selector: 'height',
- fn: function (){
- var self=this;
- return (2);
- return self;}
- }),
- smalltalk.TetrisPiece);
- smalltalk.addMethod(
- '_drawOn_',
- smalltalk.method({
- selector: 'drawOn:',
- fn: function (aRenderingContext){
- var self=this;
- smalltalk.send(aRenderingContext, "_fillStyle_", [smalltalk.send(self, "_color", [])]);
- smalltalk.send(smalltalk.send(self, "_bounds", []), "_do_", [(function(each){return (function($rec){smalltalk.send($rec, "_fillRectFrom_to_", [smalltalk.send(smalltalk.send(each, "__plus", [smalltalk.send(self, "_position", [])]), "__star", [smalltalk.send(smalltalk.Tetris, "_squareSize", [])]), smalltalk.send(smalltalk.send((1), "__at", [(1)]), "__star", [smalltalk.send(smalltalk.Tetris, "_squareSize", [])])]);smalltalk.send($rec, "_strokeStyle_", [unescape("%23999")]);smalltalk.send($rec, "_lineWidth_", [(2)]);return smalltalk.send($rec, "_strokeRectFrom_to_", [smalltalk.send(smalltalk.send(each, "__plus", [smalltalk.send(self, "_position", [])]), "__star", [smalltalk.send(smalltalk.Tetris, "_squareSize", [])]), smalltalk.send(smalltalk.send((1), "__at", [(1)]), "__star", [smalltalk.send(smalltalk.Tetris, "_squareSize", [])])]);})(aRenderingContext);})]);
- return self;}
- }),
- smalltalk.TetrisPiece);
- smalltalk.addMethod(
- '_canMove',
- smalltalk.method({
- selector: 'canMove',
- fn: function (){
- var self=this;
- return smalltalk.send(smalltalk.send(smalltalk.send(self, "_position", []), "_y", []), "__lt", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.Tetris, "_squares", []), "_y", []), "__minus", [smalltalk.send(self, "_height", [])])]);
- return self;}
- }),
- smalltalk.TetrisPiece);
- smalltalk.addMethod(
- '_canMoveIn_',
- smalltalk.method({
- selector: 'canMoveIn:',
- fn: function (aTetris){
- var self=this;
- return smalltalk.send(smalltalk.send(smalltalk.send(self, "_position", []), "_y", []), "__lt", [smalltalk.send(smalltalk.send(smalltalk.send(aTetris, "_squares", []), "_y", []), "__minus", [smalltalk.send(self, "_height", [])])]);
- return self;}
- }),
- smalltalk.TetrisPiece);
- smalltalk.addMethod(
- '_atRandom',
- smalltalk.method({
- selector: 'atRandom',
- fn: function (){
- var self=this;
- return smalltalk.send(smalltalk.send(smalltalk.send(self, "_subclasses", []), "_at_", [smalltalk.send(smalltalk.send(smalltalk.send(self, "_subclasses", []), "_size", []), "_atRandom", [])]), "_new", []);
- return self;}
- }),
- smalltalk.TetrisPiece.klass);
- smalltalk.addClass('TetrisPieceO', smalltalk.TetrisPiece, [], 'Examples');
- smalltalk.addMethod(
- '_bounds',
- smalltalk.method({
- selector: 'bounds',
- fn: function (){
- var self=this;
- return (function($rec){smalltalk.send($rec, "_add_", [smalltalk.send((0), "__at", [(0)])]);smalltalk.send($rec, "_add_", [smalltalk.send((0), "__at", [(1)])]);smalltalk.send($rec, "_add_", [smalltalk.send((1), "__at", [(0)])]);smalltalk.send($rec, "_add_", [smalltalk.send((1), "__at", [(1)])]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(smalltalk.Array, "_new", []));
- return self;}
- }),
- smalltalk.TetrisPieceO);
- smalltalk.addClass('TetrisPieceL', smalltalk.TetrisPiece, [], 'Examples');
- smalltalk.addMethod(
- '_bounds',
- smalltalk.method({
- selector: 'bounds',
- fn: function (){
- var self=this;
- return (function($rec){smalltalk.send($rec, "_add_", [smalltalk.send((0), "__at", [(0)])]);smalltalk.send($rec, "_add_", [smalltalk.send((0), "__at", [(1)])]);smalltalk.send($rec, "_add_", [smalltalk.send((0), "__at", [(2)])]);smalltalk.send($rec, "_add_", [smalltalk.send((1), "__at", [(2)])]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(smalltalk.Array, "_new", []));
- return self;}
- }),
- smalltalk.TetrisPieceL);
- smalltalk.addMethod(
- '_color',
- smalltalk.method({
- selector: 'color',
- fn: function (){
- var self=this;
- return unescape("%23ffa");
- return self;}
- }),
- smalltalk.TetrisPieceL);
- smalltalk.addMethod(
- '_height',
- smalltalk.method({
- selector: 'height',
- fn: function (){
- var self=this;
- return (3);
- return self;}
- }),
- smalltalk.TetrisPieceL);
- smalltalk.addClass('TetrisPieceJ', smalltalk.TetrisPiece, [], 'Examples');
- smalltalk.addMethod(
- '_color',
- smalltalk.method({
- selector: 'color',
- fn: function (){
- var self=this;
- return unescape("%23aaf");
- return self;}
- }),
- smalltalk.TetrisPieceJ);
- smalltalk.addMethod(
- '_bounds',
- smalltalk.method({
- selector: 'bounds',
- fn: function (){
- var self=this;
- return (function($rec){smalltalk.send($rec, "_add_", [smalltalk.send((1), "__at", [(0)])]);smalltalk.send($rec, "_add_", [smalltalk.send((1), "__at", [(1)])]);smalltalk.send($rec, "_add_", [smalltalk.send((1), "__at", [(2)])]);smalltalk.send($rec, "_add_", [smalltalk.send((0), "__at", [(2)])]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(smalltalk.Array, "_new", []));
- return self;}
- }),
- smalltalk.TetrisPieceJ);
- smalltalk.addMethod(
- '_height',
- smalltalk.method({
- selector: 'height',
- fn: function (){
- var self=this;
- return (3);
- return self;}
- }),
- smalltalk.TetrisPieceJ);
- smalltalk.addClass('TetrisPieceI', smalltalk.TetrisPiece, [], 'Examples');
- smalltalk.addMethod(
- '_color',
- smalltalk.method({
- selector: 'color',
- fn: function (){
- var self=this;
- return unescape("%23faa");
- return self;}
- }),
- smalltalk.TetrisPieceI);
- smalltalk.addMethod(
- '_bounds',
- smalltalk.method({
- selector: 'bounds',
- fn: function (){
- var self=this;
- return (function($rec){smalltalk.send($rec, "_add_", [smalltalk.send((0), "__at", [(0)])]);smalltalk.send($rec, "_add_", [smalltalk.send((0), "__at", [(1)])]);smalltalk.send($rec, "_add_", [smalltalk.send((0), "__at", [(2)])]);smalltalk.send($rec, "_add_", [smalltalk.send((0), "__at", [(3)])]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(smalltalk.Array, "_new", []));
- return self;}
- }),
- smalltalk.TetrisPieceI);
- smalltalk.addMethod(
- '_height',
- smalltalk.method({
- selector: 'height',
- fn: function (){
- var self=this;
- return (4);
- return self;}
- }),
- smalltalk.TetrisPieceI);
- smalltalk.addClass('TetrisPieceT', smalltalk.TetrisPiece, [], 'Examples');
- smalltalk.addMethod(
- '_bounds',
- smalltalk.method({
- selector: 'bounds',
- fn: function (){
- var self=this;
- return (function($rec){smalltalk.send($rec, "_add_", [smalltalk.send((0), "__at", [(0)])]);smalltalk.send($rec, "_add_", [smalltalk.send((1), "__at", [(0)])]);smalltalk.send($rec, "_add_", [smalltalk.send((2), "__at", [(0)])]);smalltalk.send($rec, "_add_", [smalltalk.send((1), "__at", [(1)])]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(smalltalk.Array, "_new", []));
- return self;}
- }),
- smalltalk.TetrisPieceT);
- smalltalk.addMethod(
- '_color',
- smalltalk.method({
- selector: 'color',
- fn: function (){
- var self=this;
- return unescape("%23aaf");
- return self;}
- }),
- smalltalk.TetrisPieceT);
|