resin 0.3.1 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (84) hide show
  1. data/amber/bin/amberc +10 -350
  2. data/amber/js/Benchfib.deploy.js +80 -89
  3. data/amber/js/Benchfib.js +80 -89
  4. data/amber/js/Canvas.deploy.js +558 -545
  5. data/amber/js/Canvas.js +563 -545
  6. data/amber/js/Compiler-AST.deploy.js +431 -243
  7. data/amber/js/Compiler-AST.js +487 -244
  8. data/amber/js/Compiler-Core.deploy.js +201 -1045
  9. data/amber/js/Compiler-Core.js +208 -1207
  10. data/amber/js/Compiler-Exceptions.deploy.js +37 -18
  11. data/amber/js/Compiler-Exceptions.js +42 -18
  12. data/amber/js/Compiler-IR.deploy.js +1071 -774
  13. data/amber/js/Compiler-IR.js +1194 -848
  14. data/amber/js/Compiler-Inlining.deploy.js +395 -373
  15. data/amber/js/Compiler-Inlining.js +395 -373
  16. data/amber/js/Compiler-Interpreter.deploy.js +1202 -0
  17. data/amber/js/Compiler-Interpreter.js +1631 -0
  18. data/amber/js/Compiler-Semantic.deploy.js +695 -600
  19. data/amber/js/Compiler-Semantic.js +721 -611
  20. data/amber/js/Compiler-Tests.deploy.js +699 -376
  21. data/amber/js/Compiler-Tests.js +834 -381
  22. data/amber/js/Compiler.deploy.js +8563 -1805
  23. data/amber/js/Compiler.js +11476 -2633
  24. data/amber/js/Examples.deploy.js +29 -29
  25. data/amber/js/Examples.js +29 -29
  26. data/amber/js/IDE.deploy.js +3292 -2649
  27. data/amber/js/IDE.js +3318 -2710
  28. data/amber/js/Importer-Exporter.deploy.js +393 -349
  29. data/amber/js/Importer-Exporter.js +398 -354
  30. data/amber/js/Kernel-Announcements.deploy.js +53 -44
  31. data/amber/js/Kernel-Announcements.js +55 -44
  32. data/amber/js/Kernel-Classes.deploy.js +566 -368
  33. data/amber/js/Kernel-Classes.js +660 -402
  34. data/amber/js/Kernel-Collections.deploy.js +1149 -1098
  35. data/amber/js/Kernel-Collections.js +1183 -1116
  36. data/amber/js/Kernel-Exceptions.deploy.js +173 -75
  37. data/amber/js/Kernel-Exceptions.js +215 -77
  38. data/amber/js/Kernel-Methods.deploy.js +530 -313
  39. data/amber/js/Kernel-Methods.js +632 -338
  40. data/amber/js/Kernel-Objects.deploy.js +1734 -1577
  41. data/amber/js/Kernel-Objects.js +1867 -1654
  42. data/amber/js/Kernel-Tests.deploy.js +1416 -973
  43. data/amber/js/Kernel-Tests.js +1495 -981
  44. data/amber/js/Kernel-Transcript.deploy.js +23 -24
  45. data/amber/js/Kernel-Transcript.js +25 -26
  46. data/amber/js/SUnit-Tests.deploy.js +402 -0
  47. data/amber/js/SUnit-Tests.js +518 -0
  48. data/amber/js/SUnit.deploy.js +535 -237
  49. data/amber/js/SUnit.js +634 -246
  50. data/amber/js/amber.js +90 -53
  51. data/amber/js/boot.js +441 -255
  52. data/amber/js/init.js +1 -3
  53. data/amber/js/lib/CodeMirror/codemirror.css +3 -0
  54. data/amber/js/lib/CodeMirror/codemirror.js +104 -55
  55. data/amber/js/lib/peg-0.7.0.min.js +9 -0
  56. data/amber/js/parser.js +1504 -802
  57. data/amber/js/parser.pegjs +170 -165
  58. data/amber/st/Canvas.st +6 -0
  59. data/amber/st/Compiler-AST.st +54 -3
  60. data/amber/st/Compiler-Core.st +6 -551
  61. data/amber/st/Compiler-Exceptions.st +4 -0
  62. data/amber/st/Compiler-IR.st +205 -87
  63. data/amber/st/Compiler-Interpreter.st +597 -0
  64. data/amber/st/Compiler-Semantic.st +46 -21
  65. data/amber/st/Compiler-Tests.st +254 -7
  66. data/amber/st/Compiler.st +3172 -1541
  67. data/amber/st/IDE.st +57 -93
  68. data/amber/st/Importer-Exporter.st +4 -7
  69. data/amber/st/Kernel-Announcements.st +8 -0
  70. data/amber/st/Kernel-Classes.st +149 -40
  71. data/amber/st/Kernel-Collections.st +43 -32
  72. data/amber/st/Kernel-Exceptions.st +70 -1
  73. data/amber/st/Kernel-Methods.st +165 -27
  74. data/amber/st/Kernel-Objects.st +215 -140
  75. data/amber/st/Kernel-Tests.st +195 -10
  76. data/amber/st/Kernel-Transcript.st +1 -3
  77. data/amber/st/SUnit-Tests.st +186 -0
  78. data/amber/st/SUnit.st +186 -14
  79. data/bin/resin +6 -0
  80. data/lib/resin/cli.rb +19 -0
  81. metadata +41 -25
  82. data/amber/js/lib/peg-0.6.2.min.js +0 -2
  83. data/bin/resin-compile +0 -6
  84. data/bin/runresin +0 -12
@@ -9,9 +9,9 @@ category: 'not yet classified',
9
9
  fn: function (){
10
10
  var self=this;
11
11
  var result;
12
- result=smalltalk.send((0),"_tinyBenchmarks",[]);
13
- smalltalk.send(console,"_log_",[smalltalk.send("0 tinyBenchmarks => ","__comma",[result])]);
14
- return self},
12
+ return smalltalk.withContext(function($ctx1) {
13
+ _st(console)._log_(_st("0 tinyBenchmarks => ").__comma(result));
14
+ return self}, function($ctx1) {$ctx1.fill(self,"main",{result:result}, smalltalk.Benchfib.klass)})},
15
15
  args: [],
16
16
  source: "main\x0a\x0a\x09| result |\x0a\x09result := 0 tinyBenchmarks.\x0a\x09console log: '0 tinyBenchmarks => ' , result",
17
17
  messageSends: ["tinyBenchmarks", "log:", ","],
@@ -27,15 +27,15 @@ selector: "benchFib",
27
27
  category: '*Benchfib',
28
28
  fn: function (){
29
29
  var self=this;
30
- var $2,$1;
31
- $2=smalltalk.send(self,"__lt",[(2)]);
30
+ return smalltalk.withContext(function($ctx1) {
31
+ $2=_st(self).__lt((2));
32
32
  if(smalltalk.assert($2)){
33
33
  $1=(1);
34
34
  } else {
35
- $1=smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self,"__minus",[(1)]),"_benchFib",[]),"__plus",[smalltalk.send(smalltalk.send(self,"__minus",[(2)]),"_benchFib",[])]),"__plus",[(1)]);
35
+ $1=_st(_st(_st(_st(self).__minus((1)))._benchFib()).__plus(_st(_st(self).__minus((2)))._benchFib())).__plus((1));
36
36
  };
37
37
  return $1;
38
- },
38
+ }, function($ctx1) {$ctx1.fill(self,"benchFib",{}, smalltalk.Number)})},
39
39
  args: [],
40
40
  source: "benchFib \x0a\x09\x22Handy send-heavy benchmark\x22\x0a\x09\x22(result // seconds to run) = approx calls per second\x22\x0a\x09\x22 | r t |\x0a\x09 t := Time millisecondsToRun: [r := 26 benchFib].\x0a\x09 (r * 1000) // t\x22\x0a\x09\x22138000 on a Mac 8100/100\x22\x0a\x09^ self < 2 \x0a\x09\x09ifTrue: [1] \x0a\x09\x09ifFalse: [(self-1) benchFib + (self-2) benchFib + 1]",
41
41
  messageSends: ["ifTrue:ifFalse:", "+", "benchFib", "-", "<"],
@@ -50,42 +50,43 @@ selector: "benchmark",
50
50
  category: '*Benchfib',
51
51
  fn: function (){
52
52
  var self=this;
53
- var $1;
54
- var size;
55
- var flags;
56
- var prime;
57
- var k;
58
- var count;
53
+ var size,flags,prime,k,count;
54
+ return smalltalk.withContext(function($ctx1) {
59
55
  size=(8190);
60
- smalltalk.send((1),"_to_do_",[self,(function(iter){
61
- count=(0);
56
+ $1=self;
57
+ $2=(function(iter){
58
+ return smalltalk.withContext(function($ctx2) {
62
59
  count;
63
- flags=smalltalk.send((smalltalk.Array || Array),"_new",[]);
60
+ flags=_st((smalltalk.Array || Array))._new();
64
61
  flags;
65
- smalltalk.send(size,"_timesRepeat_",[(function(){
66
- return smalltalk.send(flags,"_add_",[true]);
67
- })]);
68
- return smalltalk.send((1),"_to_do_",[size,(function(i){
69
- $1=smalltalk.send(flags,"_at_",[i]);
70
- if(smalltalk.assert($1)){
71
- prime=smalltalk.send(i,"__plus",[(1)]);
62
+ _st(size)._timesRepeat_((function(){
63
+ return smalltalk.withContext(function($ctx3) {
64
+ }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
65
+ $3=size;
66
+ $4=(function(i){
67
+ return smalltalk.withContext(function($ctx3) {
68
+ if(smalltalk.assert($5)){
69
+ prime=_st(i).__plus((1));
72
70
  prime;
73
- k=smalltalk.send(i,"__plus",[prime]);
71
+ k=_st(i).__plus(prime);
74
72
  k;
75
- smalltalk.send((function(){
76
- return smalltalk.send(k,"__lt_eq",[size]);
77
- }),"_whileTrue_",[(function(){
78
- smalltalk.send(flags,"_at_put_",[k,false]);
79
- k=smalltalk.send(k,"__plus",[prime]);
73
+ _st((function(){
74
+ return smalltalk.withContext(function($ctx4) {
75
+ }, function($ctx4) {$ctx4.fillBlock({},$ctx1)})}))._whileTrue_((function(){
76
+ return smalltalk.withContext(function($ctx4) {
77
+ k=_st(k).__plus(prime);
80
78
  return k;
81
- })]);
82
- count=smalltalk.send(count,"__plus",[(1)]);
79
+ }, function($ctx4) {$ctx4.fillBlock({},$ctx1)})}));
80
+ count=_st(count).__plus((1));
83
81
  return count;
84
82
  };
85
- })]);
86
- })]);
87
- return count;
88
- },
83
+ }, function($ctx3) {$ctx3.fillBlock({i:i},$ctx1)})});
84
+ return _st((1))._to_do_($3,$4);
85
+ }, function($ctx2) {$ctx2.fillBlock({iter:iter},$ctx1)})});
86
+ _st((1))._to_do_($1,$2);
87
+ $6=count;
88
+ return $6;
89
+ }, function($ctx1) {$ctx1.fill(self,"benchmark",{size:size,flags:flags,prime:prime,k:k,count:count}, smalltalk.Number)})},
89
90
  args: [],
90
91
  source: "benchmark \x0a\x09\x22Handy bytecode-heavy benchmark\x22\x0a\x09\x22(500000 // time to run) = approx bytecodes per second\x22\x0a\x09\x225000000 // (Time millisecondsToRun: [10 benchmark]) * 1000\x22\x0a\x09\x223059000 on a Mac 8100/100\x22\x0a | size flags prime k count |\x0a size := 8190.\x0a 1 to: self do:\x0a [:iter |\x0a count := 0.\x0a flags := Array new.\x0a size timesRepeat: [ flags add: true].\x0a 1 to: size do:\x0a [:i | (flags at: i) ifTrue:\x0a [prime := i+1.\x0a k := i + prime.\x0a [k <= size] whileTrue:\x0a [flags at: k put: false.\x0a k := k + prime].\x0a count := count + 1]]].\x0a ^ count",
91
92
  messageSends: ["to:do:", "new", "timesRepeat:", "add:", "ifTrue:", "+", "whileTrue:", "at:put:", "<=", "at:"],
@@ -100,12 +101,11 @@ selector: "jsbenchFib",
100
101
  category: '*Benchfib',
101
102
  fn: function (){
102
103
  var self=this;
103
- if (this < 2) {
104
+ return smalltalk.withContext(function($ctx1) {
104
105
  return 1;
105
106
  } else {
106
107
  return (this-1)._jsbenchFib() + (this-2)._jsbenchFib() + 1;};
107
- ;
108
- return self},
108
+ return self}, function($ctx1) {$ctx1.fill(self,"jsbenchFib",{}, smalltalk.Number)})},
109
109
  args: [],
110
110
  source: "jsbenchFib\x0a \x0a\x09<if (this < 2) {\x0areturn 1;\x0a} else {\x0areturn (this-1)._jsbenchFib() + (this-2)._jsbenchFib() + 1;}>",
111
111
  messageSends: [],
@@ -120,7 +120,7 @@ selector: "jsbenchmark",
120
120
  category: '*Benchfib',
121
121
  fn: function (){
122
122
  var self=this;
123
-
123
+ return smalltalk.withContext(function($ctx1) {
124
124
  var size = 8190;
125
125
  var count;
126
126
  for (var z=0;z<this;z++) {
@@ -142,8 +142,7 @@ for (var z=0;z<this;z++) {
142
142
  }
143
143
  }
144
144
  return count;
145
- ;
146
- return self},
145
+ return self}, function($ctx1) {$ctx1.fill(self,"jsbenchmark",{}, smalltalk.Number)})},
147
146
  args: [],
148
147
  source: "jsbenchmark\x0a\x0a<\x0avar size = 8190;\x0avar count;\x0afor (var z=0;z<this;z++) {\x0a count = 0;\x0a var flags = new Array();\x0a for (var p=0; p<size; p++) {\x0a flags[p] = true;\x0a }\x0a for (var i=1;i<=size;i++) {\x0a if (flags[i-1]) {\x0a var prime = i+1;\x0a var k = i + prime;\x0a while (k <= size) {\x0a flags[k-1] = false;\x0a k = k + prime;\x0a }\x0a count = count + 1;\x0a }\x0a }\x0a}\x0areturn count>",
149
148
  messageSends: [],
@@ -158,38 +157,34 @@ selector: "jstinyBenchmarks",
158
157
  category: '*Benchfib',
159
158
  fn: function (){
160
159
  var self=this;
161
- var $1;
162
- var t1;
163
- var t2;
164
- var r;
165
- var n1;
166
- var n2;
160
+ var t1,t2,r,n1,n2;
161
+ return smalltalk.withContext(function($ctx1) {
167
162
  n1=(1);
168
- smalltalk.send((function(){
169
- t1=smalltalk.send((smalltalk.Date || Date),"_millisecondsToRun_",[(function(){
170
- return smalltalk.send(n1,"_jsbenchmark",[]);
171
- })]);
163
+ _st((function(){
164
+ return smalltalk.withContext(function($ctx2) {
165
+ return smalltalk.withContext(function($ctx3) {
166
+ }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
172
167
  t1;
173
- return smalltalk.send(t1,"__lt",[(1000)]);
174
- }),"_whileTrue_",[(function(){
175
- n1=smalltalk.send(n1,"__star",[(2)]);
168
+ return _st(t1).__lt((1000));
169
+ }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
170
+ return smalltalk.withContext(function($ctx2) {
176
171
  return n1;
177
- })]);
172
+ }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
178
173
  n2=(28);
179
- smalltalk.send((function(){
180
- t2=smalltalk.send((smalltalk.Date || Date),"_millisecondsToRun_",[(function(){
181
- r=smalltalk.send(n2,"_jsbenchFib",[]);
174
+ _st((function(){
175
+ return smalltalk.withContext(function($ctx2) {
176
+ return smalltalk.withContext(function($ctx3) {
182
177
  return r;
183
- })]);
178
+ }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
184
179
  t2;
185
- return smalltalk.send(t2,"__lt",[(1000)]);
186
- }),"_whileTrue_",[(function(){
187
- n2=smalltalk.send(n2,"__plus",[(1)]);
180
+ return _st(t2).__lt((1000));
181
+ }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
182
+ return smalltalk.withContext(function($ctx2) {
188
183
  return n2;
189
- })]);
190
- $1=smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(n1,"__star",[(500000)]),"__star",[(1000)]),"__slash",[t1]),"_printString",[]),"__comma",[" bytecodes/sec; "]),"__comma",[smalltalk.send(smalltalk.send(smalltalk.send(r,"__star",[(1000)]),"__slash",[t2]),"_printString",[])]),"__comma",[" sends/sec"]);
184
+ }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
185
+ $1=_st(_st(_st(_st(_st(_st(_st(n1).__star((500000))).__star((1000))).__slash(t1))._printString()).__comma(" bytecodes/sec; ")).__comma(_st(_st(_st(r).__star((1000))).__slash(t2))._printString())).__comma(" sends/sec");
191
186
  return $1;
192
- },
187
+ }, function($ctx1) {$ctx1.fill(self,"jstinyBenchmarks",{t1:t1,t2:t2,r:r,n1:n1,n2:n2}, smalltalk.Number)})},
193
188
  args: [],
194
189
  source: "jstinyBenchmarks\x0a\x09\x220 jstinyBenchmarks\x22\x0a\x0a\x09| t1 t2 r n1 n2 |\x0a\x09n1 := 1.\x0a\x09[t1 := Date millisecondsToRun: [n1 jsbenchmark].\x0a\x09t1 < 1000] whileTrue:[n1 := n1 * 2]. \x22Note: #benchmark's runtime is about O(n)\x22\x0a\x0a\x09n2 := 28.\x0a\x09[t2 := Date millisecondsToRun: [r := n2 jsbenchFib].\x0a\x09t2 < 1000] whileTrue:[n2 := n2 + 1]. \x0a\x09\x22Note: #jsbenchFib's runtime is about O(k^n),\x0a\x09\x09where k is the golden number = (1 + 5 sqrt) / 2 = 1.618....\x22\x0a\x0a\x09^ ((n1 * 500000 * 1000) / t1) printString, ' bytecodes/sec; ',\x0a\x09 ((r * 1000) / t2) printString, ' sends/sec'",
195
190
  messageSends: ["whileTrue:", "*", "millisecondsToRun:", "jsbenchmark", "<", "+", "jsbenchFib", ",", "printString", "/"],
@@ -204,38 +199,34 @@ selector: "tinyBenchmarks",
204
199
  category: '*Benchfib',
205
200
  fn: function (){
206
201
  var self=this;
207
- var $1;
208
- var t1;
209
- var t2;
210
- var r;
211
- var n1;
212
- var n2;
202
+ var t1,t2,r,n1,n2;
203
+ return smalltalk.withContext(function($ctx1) {
213
204
  n1=(1);
214
- smalltalk.send((function(){
215
- t1=smalltalk.send((smalltalk.Date || Date),"_millisecondsToRun_",[(function(){
216
- return smalltalk.send(n1,"_benchmark",[]);
217
- })]);
205
+ _st((function(){
206
+ return smalltalk.withContext(function($ctx2) {
207
+ return smalltalk.withContext(function($ctx3) {
208
+ }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
218
209
  t1;
219
- return smalltalk.send(t1,"__lt",[(1000)]);
220
- }),"_whileTrue_",[(function(){
221
- n1=smalltalk.send(n1,"__star",[(2)]);
210
+ return _st(t1).__lt((1000));
211
+ }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
212
+ return smalltalk.withContext(function($ctx2) {
222
213
  return n1;
223
- })]);
214
+ }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
224
215
  n2=(16);
225
- smalltalk.send((function(){
226
- t2=smalltalk.send((smalltalk.Date || Date),"_millisecondsToRun_",[(function(){
227
- r=smalltalk.send(n2,"_benchFib",[]);
216
+ _st((function(){
217
+ return smalltalk.withContext(function($ctx2) {
218
+ return smalltalk.withContext(function($ctx3) {
228
219
  return r;
229
- })]);
220
+ }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
230
221
  t2;
231
- return smalltalk.send(t2,"__lt",[(1000)]);
232
- }),"_whileTrue_",[(function(){
233
- n2=smalltalk.send(n2,"__plus",[(1)]);
222
+ return _st(t2).__lt((1000));
223
+ }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
224
+ return smalltalk.withContext(function($ctx2) {
234
225
  return n2;
235
- })]);
236
- $1=smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(n1,"__star",[(500000)]),"__star",[(1000)]),"__slash",[t1]),"_printString",[]),"__comma",[" bytecodes/sec; "]),"__comma",[smalltalk.send(smalltalk.send(smalltalk.send(r,"__star",[(1000)]),"__slash",[t2]),"_printString",[])]),"__comma",[" sends/sec"]);
226
+ }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
227
+ $1=_st(_st(_st(_st(_st(_st(_st(n1).__star((500000))).__star((1000))).__slash(t1))._printString()).__comma(" bytecodes/sec; ")).__comma(_st(_st(_st(r).__star((1000))).__slash(t2))._printString())).__comma(" sends/sec");
237
228
  return $1;
238
- },
229
+ }, function($ctx1) {$ctx1.fill(self,"tinyBenchmarks",{t1:t1,t2:t2,r:r,n1:n1,n2:n2}, smalltalk.Number)})},
239
230
  args: [],
240
231
  source: "tinyBenchmarks \x0a\x09\x22Report the results of running the two tiny Squeak benchmarks.\x0a\x09ar 9/10/1999: Adjusted to run at least 1 sec to get more stable results\x22\x0a\x09\x220 tinyBenchmarks\x22\x0a\x09\x22On a 292 MHz G3 Mac: 22727272 bytecodes/sec; 984169 sends/sec\x22\x0a\x09\x22On a 400 MHz PII/Win98: 18028169 bytecodes/sec; 1081272 sends/sec\x22\x0a\x09| t1 t2 r n1 n2 |\x0a\x09n1 := 1.\x0a\x09[t1 := Date millisecondsToRun: [n1 benchmark].\x0a\x09t1 < 1000] whileTrue:[n1 := n1 * 2]. \x22Note: #benchmark's runtime is about O(n)\x22\x0a\x0a\x09n2 := 16.\x0a\x09[t2 := Date millisecondsToRun: [r := n2 benchFib].\x0a\x09t2 < 1000] whileTrue:[n2 := n2 + 1]. \x0a\x09\x22Note: #benchFib's runtime is about O(k^n),\x0a\x09\x09where k is the golden number = (1 + 5 sqrt) / 2 = 1.618....\x22\x0a\x0a\x09^ ((n1 * 500000 * 1000) / t1) printString, ' bytecodes/sec; ',\x0a\x09 ((r * 1000) / t2) printString, ' sends/sec'",
241
232
  messageSends: ["whileTrue:", "*", "millisecondsToRun:", "benchmark", "<", "+", "benchFib", ",", "printString", "/"],
@@ -6,10 +6,10 @@ smalltalk.method({
6
6
  selector: "a",
7
7
  fn: function (){
8
8
  var self=this;
9
- var $1;
10
- $1=smalltalk.send(self,"_tag_",["a"]);
9
+ return smalltalk.withContext(function($ctx1) {
10
+ $1=_st(self)._tag_("a");
11
11
  return $1;
12
- }
12
+ }, function($ctx1) {$ctx1.fill(self,"a",{}, smalltalk.HTMLCanvas)})}
13
13
  }),
14
14
  smalltalk.HTMLCanvas);
15
15
 
@@ -19,10 +19,10 @@ smalltalk.method({
19
19
  selector: "abbr",
20
20
  fn: function (){
21
21
  var self=this;
22
- var $1;
23
- $1=smalltalk.send(self,"_tag_",["abbr"]);
22
+ return smalltalk.withContext(function($ctx1) {
23
+ $1=_st(self)._tag_("abbr");
24
24
  return $1;
25
- }
25
+ }, function($ctx1) {$ctx1.fill(self,"abbr",{}, smalltalk.HTMLCanvas)})}
26
26
  }),
27
27
  smalltalk.HTMLCanvas);
28
28
 
@@ -32,10 +32,10 @@ smalltalk.method({
32
32
  selector: "address",
33
33
  fn: function (){
34
34
  var self=this;
35
- var $1;
36
- $1=smalltalk.send(self,"_tag_",["address"]);
35
+ return smalltalk.withContext(function($ctx1) {
36
+ $1=_st(self)._tag_("address");
37
37
  return $1;
38
- }
38
+ }, function($ctx1) {$ctx1.fill(self,"address",{}, smalltalk.HTMLCanvas)})}
39
39
  }),
40
40
  smalltalk.HTMLCanvas);
41
41
 
@@ -45,10 +45,10 @@ smalltalk.method({
45
45
  selector: "area",
46
46
  fn: function (){
47
47
  var self=this;
48
- var $1;
49
- $1=smalltalk.send(self,"_tag_",["area"]);
48
+ return smalltalk.withContext(function($ctx1) {
49
+ $1=_st(self)._tag_("area");
50
50
  return $1;
51
- }
51
+ }, function($ctx1) {$ctx1.fill(self,"area",{}, smalltalk.HTMLCanvas)})}
52
52
  }),
53
53
  smalltalk.HTMLCanvas);
54
54
 
@@ -58,10 +58,10 @@ smalltalk.method({
58
58
  selector: "article",
59
59
  fn: function (){
60
60
  var self=this;
61
- var $1;
62
- $1=smalltalk.send(self,"_tag_",["article"]);
61
+ return smalltalk.withContext(function($ctx1) {
62
+ $1=_st(self)._tag_("article");
63
63
  return $1;
64
- }
64
+ }, function($ctx1) {$ctx1.fill(self,"article",{}, smalltalk.HTMLCanvas)})}
65
65
  }),
66
66
  smalltalk.HTMLCanvas);
67
67
 
@@ -71,10 +71,10 @@ smalltalk.method({
71
71
  selector: "aside",
72
72
  fn: function (){
73
73
  var self=this;
74
- var $1;
75
- $1=smalltalk.send(self,"_tag_",["aside"]);
74
+ return smalltalk.withContext(function($ctx1) {
75
+ $1=_st(self)._tag_("aside");
76
76
  return $1;
77
- }
77
+ }, function($ctx1) {$ctx1.fill(self,"aside",{}, smalltalk.HTMLCanvas)})}
78
78
  }),
79
79
  smalltalk.HTMLCanvas);
80
80
 
@@ -84,10 +84,10 @@ smalltalk.method({
84
84
  selector: "audio",
85
85
  fn: function (){
86
86
  var self=this;
87
- var $1;
88
- $1=smalltalk.send(self,"_tag_",["audio"]);
87
+ return smalltalk.withContext(function($ctx1) {
88
+ $1=_st(self)._tag_("audio");
89
89
  return $1;
90
- }
90
+ }, function($ctx1) {$ctx1.fill(self,"audio",{}, smalltalk.HTMLCanvas)})}
91
91
  }),
92
92
  smalltalk.HTMLCanvas);
93
93
 
@@ -97,10 +97,10 @@ smalltalk.method({
97
97
  selector: "base",
98
98
  fn: function (){
99
99
  var self=this;
100
- var $1;
101
- $1=smalltalk.send(self,"_tag_",["base"]);
100
+ return smalltalk.withContext(function($ctx1) {
101
+ $1=_st(self)._tag_("base");
102
102
  return $1;
103
- }
103
+ }, function($ctx1) {$ctx1.fill(self,"base",{}, smalltalk.HTMLCanvas)})}
104
104
  }),
105
105
  smalltalk.HTMLCanvas);
106
106
 
@@ -110,10 +110,10 @@ smalltalk.method({
110
110
  selector: "blockquote",
111
111
  fn: function (){
112
112
  var self=this;
113
- var $1;
114
- $1=smalltalk.send(self,"_tag_",["blockquote"]);
113
+ return smalltalk.withContext(function($ctx1) {
114
+ $1=_st(self)._tag_("blockquote");
115
115
  return $1;
116
- }
116
+ }, function($ctx1) {$ctx1.fill(self,"blockquote",{}, smalltalk.HTMLCanvas)})}
117
117
  }),
118
118
  smalltalk.HTMLCanvas);
119
119
 
@@ -123,10 +123,10 @@ smalltalk.method({
123
123
  selector: "body",
124
124
  fn: function (){
125
125
  var self=this;
126
- var $1;
127
- $1=smalltalk.send(self,"_tag_",["body"]);
126
+ return smalltalk.withContext(function($ctx1) {
127
+ $1=_st(self)._tag_("body");
128
128
  return $1;
129
- }
129
+ }, function($ctx1) {$ctx1.fill(self,"body",{}, smalltalk.HTMLCanvas)})}
130
130
  }),
131
131
  smalltalk.HTMLCanvas);
132
132
 
@@ -136,10 +136,10 @@ smalltalk.method({
136
136
  selector: "br",
137
137
  fn: function (){
138
138
  var self=this;
139
- var $1;
140
- $1=smalltalk.send(self,"_tag_",["br"]);
139
+ return smalltalk.withContext(function($ctx1) {
140
+ $1=_st(self)._tag_("br");
141
141
  return $1;
142
- }
142
+ }, function($ctx1) {$ctx1.fill(self,"br",{}, smalltalk.HTMLCanvas)})}
143
143
  }),
144
144
  smalltalk.HTMLCanvas);
145
145
 
@@ -149,10 +149,10 @@ smalltalk.method({
149
149
  selector: "button",
150
150
  fn: function (){
151
151
  var self=this;
152
- var $1;
153
- $1=smalltalk.send(self,"_tag_",["button"]);
152
+ return smalltalk.withContext(function($ctx1) {
153
+ $1=_st(self)._tag_("button");
154
154
  return $1;
155
- }
155
+ }, function($ctx1) {$ctx1.fill(self,"button",{}, smalltalk.HTMLCanvas)})}
156
156
  }),
157
157
  smalltalk.HTMLCanvas);
158
158
 
@@ -162,10 +162,10 @@ smalltalk.method({
162
162
  selector: "canvas",
163
163
  fn: function (){
164
164
  var self=this;
165
- var $1;
166
- $1=smalltalk.send(self,"_tag_",["canvas"]);
165
+ return smalltalk.withContext(function($ctx1) {
166
+ $1=_st(self)._tag_("canvas");
167
167
  return $1;
168
- }
168
+ }, function($ctx1) {$ctx1.fill(self,"canvas",{}, smalltalk.HTMLCanvas)})}
169
169
  }),
170
170
  smalltalk.HTMLCanvas);
171
171
 
@@ -175,10 +175,10 @@ smalltalk.method({
175
175
  selector: "caption",
176
176
  fn: function (){
177
177
  var self=this;
178
- var $1;
179
- $1=smalltalk.send(self,"_tag_",["caption"]);
178
+ return smalltalk.withContext(function($ctx1) {
179
+ $1=_st(self)._tag_("caption");
180
180
  return $1;
181
- }
181
+ }, function($ctx1) {$ctx1.fill(self,"caption",{}, smalltalk.HTMLCanvas)})}
182
182
  }),
183
183
  smalltalk.HTMLCanvas);
184
184
 
@@ -188,10 +188,10 @@ smalltalk.method({
188
188
  selector: "cite",
189
189
  fn: function (){
190
190
  var self=this;
191
- var $1;
192
- $1=smalltalk.send(self,"_tag_",["cite"]);
191
+ return smalltalk.withContext(function($ctx1) {
192
+ $1=_st(self)._tag_("cite");
193
193
  return $1;
194
- }
194
+ }, function($ctx1) {$ctx1.fill(self,"cite",{}, smalltalk.HTMLCanvas)})}
195
195
  }),
196
196
  smalltalk.HTMLCanvas);
197
197
 
@@ -201,10 +201,10 @@ smalltalk.method({
201
201
  selector: "code",
202
202
  fn: function (){
203
203
  var self=this;
204
- var $1;
205
- $1=smalltalk.send(self,"_tag_",["code"]);
204
+ return smalltalk.withContext(function($ctx1) {
205
+ $1=_st(self)._tag_("code");
206
206
  return $1;
207
- }
207
+ }, function($ctx1) {$ctx1.fill(self,"code",{}, smalltalk.HTMLCanvas)})}
208
208
  }),
209
209
  smalltalk.HTMLCanvas);
210
210
 
@@ -214,10 +214,10 @@ smalltalk.method({
214
214
  selector: "col",
215
215
  fn: function (){
216
216
  var self=this;
217
- var $1;
218
- $1=smalltalk.send(self,"_tag_",["col"]);
217
+ return smalltalk.withContext(function($ctx1) {
218
+ $1=_st(self)._tag_("col");
219
219
  return $1;
220
- }
220
+ }, function($ctx1) {$ctx1.fill(self,"col",{}, smalltalk.HTMLCanvas)})}
221
221
  }),
222
222
  smalltalk.HTMLCanvas);
223
223
 
@@ -227,10 +227,10 @@ smalltalk.method({
227
227
  selector: "colgroup",
228
228
  fn: function (){
229
229
  var self=this;
230
- var $1;
231
- $1=smalltalk.send(self,"_tag_",["colgroup"]);
230
+ return smalltalk.withContext(function($ctx1) {
231
+ $1=_st(self)._tag_("colgroup");
232
232
  return $1;
233
- }
233
+ }, function($ctx1) {$ctx1.fill(self,"colgroup",{}, smalltalk.HTMLCanvas)})}
234
234
  }),
235
235
  smalltalk.HTMLCanvas);
236
236
 
@@ -240,10 +240,10 @@ smalltalk.method({
240
240
  selector: "command",
241
241
  fn: function (){
242
242
  var self=this;
243
- var $1;
244
- $1=smalltalk.send(self,"_tag_",["command"]);
243
+ return smalltalk.withContext(function($ctx1) {
244
+ $1=_st(self)._tag_("command");
245
245
  return $1;
246
- }
246
+ }, function($ctx1) {$ctx1.fill(self,"command",{}, smalltalk.HTMLCanvas)})}
247
247
  }),
248
248
  smalltalk.HTMLCanvas);
249
249
 
@@ -253,10 +253,10 @@ smalltalk.method({
253
253
  selector: "datalist",
254
254
  fn: function (){
255
255
  var self=this;
256
- var $1;
257
- $1=smalltalk.send(self,"_tag_",["datalist"]);
256
+ return smalltalk.withContext(function($ctx1) {
257
+ $1=_st(self)._tag_("datalist");
258
258
  return $1;
259
- }
259
+ }, function($ctx1) {$ctx1.fill(self,"datalist",{}, smalltalk.HTMLCanvas)})}
260
260
  }),
261
261
  smalltalk.HTMLCanvas);
262
262
 
@@ -266,10 +266,10 @@ smalltalk.method({
266
266
  selector: "dd",
267
267
  fn: function (){
268
268
  var self=this;
269
- var $1;
270
- $1=smalltalk.send(self,"_tag_",["dd"]);
269
+ return smalltalk.withContext(function($ctx1) {
270
+ $1=_st(self)._tag_("dd");
271
271
  return $1;
272
- }
272
+ }, function($ctx1) {$ctx1.fill(self,"dd",{}, smalltalk.HTMLCanvas)})}
273
273
  }),
274
274
  smalltalk.HTMLCanvas);
275
275
 
@@ -279,10 +279,10 @@ smalltalk.method({
279
279
  selector: "del",
280
280
  fn: function (){
281
281
  var self=this;
282
- var $1;
283
- $1=smalltalk.send(self,"_tag_",["del"]);
282
+ return smalltalk.withContext(function($ctx1) {
283
+ $1=_st(self)._tag_("del");
284
284
  return $1;
285
- }
285
+ }, function($ctx1) {$ctx1.fill(self,"del",{}, smalltalk.HTMLCanvas)})}
286
286
  }),
287
287
  smalltalk.HTMLCanvas);
288
288
 
@@ -292,10 +292,10 @@ smalltalk.method({
292
292
  selector: "details",
293
293
  fn: function (){
294
294
  var self=this;
295
- var $1;
296
- $1=smalltalk.send(self,"_tag_",["details"]);
295
+ return smalltalk.withContext(function($ctx1) {
296
+ $1=_st(self)._tag_("details");
297
297
  return $1;
298
- }
298
+ }, function($ctx1) {$ctx1.fill(self,"details",{}, smalltalk.HTMLCanvas)})}
299
299
  }),
300
300
  smalltalk.HTMLCanvas);
301
301
 
@@ -305,10 +305,10 @@ smalltalk.method({
305
305
  selector: "div",
306
306
  fn: function (){
307
307
  var self=this;
308
- var $1;
309
- $1=smalltalk.send(self,"_tag_",["div"]);
308
+ return smalltalk.withContext(function($ctx1) {
309
+ $1=_st(self)._tag_("div");
310
310
  return $1;
311
- }
311
+ }, function($ctx1) {$ctx1.fill(self,"div",{}, smalltalk.HTMLCanvas)})}
312
312
  }),
313
313
  smalltalk.HTMLCanvas);
314
314
 
@@ -318,10 +318,10 @@ smalltalk.method({
318
318
  selector: "div:",
319
319
  fn: function (aBlock){
320
320
  var self=this;
321
- var $1;
322
- $1=smalltalk.send(smalltalk.send(self,"_div",[]),"_with_",[aBlock]);
321
+ return smalltalk.withContext(function($ctx1) {
322
+ $1=_st(_st(self)._div())._with_(aBlock);
323
323
  return $1;
324
- }
324
+ }, function($ctx1) {$ctx1.fill(self,"div:",{aBlock:aBlock}, smalltalk.HTMLCanvas)})}
325
325
  }),
326
326
  smalltalk.HTMLCanvas);
327
327
 
@@ -331,10 +331,10 @@ smalltalk.method({
331
331
  selector: "dl",
332
332
  fn: function (){
333
333
  var self=this;
334
- var $1;
335
- $1=smalltalk.send(self,"_tag_",["dl"]);
334
+ return smalltalk.withContext(function($ctx1) {
335
+ $1=_st(self)._tag_("dl");
336
336
  return $1;
337
- }
337
+ }, function($ctx1) {$ctx1.fill(self,"dl",{}, smalltalk.HTMLCanvas)})}
338
338
  }),
339
339
  smalltalk.HTMLCanvas);
340
340
 
@@ -344,10 +344,10 @@ smalltalk.method({
344
344
  selector: "dt",
345
345
  fn: function (){
346
346
  var self=this;
347
- var $1;
348
- $1=smalltalk.send(self,"_tag_",["dt"]);
347
+ return smalltalk.withContext(function($ctx1) {
348
+ $1=_st(self)._tag_("dt");
349
349
  return $1;
350
- }
350
+ }, function($ctx1) {$ctx1.fill(self,"dt",{}, smalltalk.HTMLCanvas)})}
351
351
  }),
352
352
  smalltalk.HTMLCanvas);
353
353
 
@@ -357,10 +357,10 @@ smalltalk.method({
357
357
  selector: "em",
358
358
  fn: function (){
359
359
  var self=this;
360
- var $1;
361
- $1=smalltalk.send(self,"_tag_",["em"]);
360
+ return smalltalk.withContext(function($ctx1) {
361
+ $1=_st(self)._tag_("em");
362
362
  return $1;
363
- }
363
+ }, function($ctx1) {$ctx1.fill(self,"em",{}, smalltalk.HTMLCanvas)})}
364
364
  }),
365
365
  smalltalk.HTMLCanvas);
366
366
 
@@ -370,10 +370,10 @@ smalltalk.method({
370
370
  selector: "embed",
371
371
  fn: function (){
372
372
  var self=this;
373
- var $1;
374
- $1=smalltalk.send(self,"_tag_",["embed"]);
373
+ return smalltalk.withContext(function($ctx1) {
374
+ $1=_st(self)._tag_("embed");
375
375
  return $1;
376
- }
376
+ }, function($ctx1) {$ctx1.fill(self,"embed",{}, smalltalk.HTMLCanvas)})}
377
377
  }),
378
378
  smalltalk.HTMLCanvas);
379
379
 
@@ -383,10 +383,10 @@ smalltalk.method({
383
383
  selector: "fieldset",
384
384
  fn: function (){
385
385
  var self=this;
386
- var $1;
387
- $1=smalltalk.send(self,"_tag_",["fieldset"]);
386
+ return smalltalk.withContext(function($ctx1) {
387
+ $1=_st(self)._tag_("fieldset");
388
388
  return $1;
389
- }
389
+ }, function($ctx1) {$ctx1.fill(self,"fieldset",{}, smalltalk.HTMLCanvas)})}
390
390
  }),
391
391
  smalltalk.HTMLCanvas);
392
392
 
@@ -396,10 +396,10 @@ smalltalk.method({
396
396
  selector: "figcaption",
397
397
  fn: function (){
398
398
  var self=this;
399
- var $1;
400
- $1=smalltalk.send(self,"_tag_",["figcaption"]);
399
+ return smalltalk.withContext(function($ctx1) {
400
+ $1=_st(self)._tag_("figcaption");
401
401
  return $1;
402
- }
402
+ }, function($ctx1) {$ctx1.fill(self,"figcaption",{}, smalltalk.HTMLCanvas)})}
403
403
  }),
404
404
  smalltalk.HTMLCanvas);
405
405
 
@@ -409,10 +409,10 @@ smalltalk.method({
409
409
  selector: "figure",
410
410
  fn: function (){
411
411
  var self=this;
412
- var $1;
413
- $1=smalltalk.send(self,"_tag_",["figure"]);
412
+ return smalltalk.withContext(function($ctx1) {
413
+ $1=_st(self)._tag_("figure");
414
414
  return $1;
415
- }
415
+ }, function($ctx1) {$ctx1.fill(self,"figure",{}, smalltalk.HTMLCanvas)})}
416
416
  }),
417
417
  smalltalk.HTMLCanvas);
418
418
 
@@ -422,10 +422,10 @@ smalltalk.method({
422
422
  selector: "footer",
423
423
  fn: function (){
424
424
  var self=this;
425
- var $1;
426
- $1=smalltalk.send(self,"_tag_",["footer"]);
425
+ return smalltalk.withContext(function($ctx1) {
426
+ $1=_st(self)._tag_("footer");
427
427
  return $1;
428
- }
428
+ }, function($ctx1) {$ctx1.fill(self,"footer",{}, smalltalk.HTMLCanvas)})}
429
429
  }),
430
430
  smalltalk.HTMLCanvas);
431
431
 
@@ -435,10 +435,10 @@ smalltalk.method({
435
435
  selector: "form",
436
436
  fn: function (){
437
437
  var self=this;
438
- var $1;
439
- $1=smalltalk.send(self,"_tag_",["form"]);
438
+ return smalltalk.withContext(function($ctx1) {
439
+ $1=_st(self)._tag_("form");
440
440
  return $1;
441
- }
441
+ }, function($ctx1) {$ctx1.fill(self,"form",{}, smalltalk.HTMLCanvas)})}
442
442
  }),
443
443
  smalltalk.HTMLCanvas);
444
444
 
@@ -448,10 +448,10 @@ smalltalk.method({
448
448
  selector: "h1",
449
449
  fn: function (){
450
450
  var self=this;
451
- var $1;
452
- $1=smalltalk.send(self,"_tag_",["h1"]);
451
+ return smalltalk.withContext(function($ctx1) {
452
+ $1=_st(self)._tag_("h1");
453
453
  return $1;
454
- }
454
+ }, function($ctx1) {$ctx1.fill(self,"h1",{}, smalltalk.HTMLCanvas)})}
455
455
  }),
456
456
  smalltalk.HTMLCanvas);
457
457
 
@@ -461,10 +461,10 @@ smalltalk.method({
461
461
  selector: "h1:",
462
462
  fn: function (anObject){
463
463
  var self=this;
464
- var $1;
465
- $1=smalltalk.send(smalltalk.send(self,"_h1",[]),"_with_",[anObject]);
464
+ return smalltalk.withContext(function($ctx1) {
465
+ $1=_st(_st(self)._h1())._with_(anObject);
466
466
  return $1;
467
- }
467
+ }, function($ctx1) {$ctx1.fill(self,"h1:",{anObject:anObject}, smalltalk.HTMLCanvas)})}
468
468
  }),
469
469
  smalltalk.HTMLCanvas);
470
470
 
@@ -474,10 +474,10 @@ smalltalk.method({
474
474
  selector: "h2",
475
475
  fn: function (){
476
476
  var self=this;
477
- var $1;
478
- $1=smalltalk.send(self,"_tag_",["h2"]);
477
+ return smalltalk.withContext(function($ctx1) {
478
+ $1=_st(self)._tag_("h2");
479
479
  return $1;
480
- }
480
+ }, function($ctx1) {$ctx1.fill(self,"h2",{}, smalltalk.HTMLCanvas)})}
481
481
  }),
482
482
  smalltalk.HTMLCanvas);
483
483
 
@@ -487,10 +487,10 @@ smalltalk.method({
487
487
  selector: "h2:",
488
488
  fn: function (anObject){
489
489
  var self=this;
490
- var $1;
491
- $1=smalltalk.send(smalltalk.send(self,"_h2",[]),"_with_",[anObject]);
490
+ return smalltalk.withContext(function($ctx1) {
491
+ $1=_st(_st(self)._h2())._with_(anObject);
492
492
  return $1;
493
- }
493
+ }, function($ctx1) {$ctx1.fill(self,"h2:",{anObject:anObject}, smalltalk.HTMLCanvas)})}
494
494
  }),
495
495
  smalltalk.HTMLCanvas);
496
496
 
@@ -500,10 +500,10 @@ smalltalk.method({
500
500
  selector: "h3",
501
501
  fn: function (){
502
502
  var self=this;
503
- var $1;
504
- $1=smalltalk.send(self,"_tag_",["h3"]);
503
+ return smalltalk.withContext(function($ctx1) {
504
+ $1=_st(self)._tag_("h3");
505
505
  return $1;
506
- }
506
+ }, function($ctx1) {$ctx1.fill(self,"h3",{}, smalltalk.HTMLCanvas)})}
507
507
  }),
508
508
  smalltalk.HTMLCanvas);
509
509
 
@@ -513,10 +513,10 @@ smalltalk.method({
513
513
  selector: "h3:",
514
514
  fn: function (anObject){
515
515
  var self=this;
516
- var $1;
517
- $1=smalltalk.send(smalltalk.send(self,"_h3",[]),"_with_",[anObject]);
516
+ return smalltalk.withContext(function($ctx1) {
517
+ $1=_st(_st(self)._h3())._with_(anObject);
518
518
  return $1;
519
- }
519
+ }, function($ctx1) {$ctx1.fill(self,"h3:",{anObject:anObject}, smalltalk.HTMLCanvas)})}
520
520
  }),
521
521
  smalltalk.HTMLCanvas);
522
522
 
@@ -526,10 +526,10 @@ smalltalk.method({
526
526
  selector: "h4",
527
527
  fn: function (){
528
528
  var self=this;
529
- var $1;
530
- $1=smalltalk.send(self,"_tag_",["h4"]);
529
+ return smalltalk.withContext(function($ctx1) {
530
+ $1=_st(self)._tag_("h4");
531
531
  return $1;
532
- }
532
+ }, function($ctx1) {$ctx1.fill(self,"h4",{}, smalltalk.HTMLCanvas)})}
533
533
  }),
534
534
  smalltalk.HTMLCanvas);
535
535
 
@@ -539,10 +539,10 @@ smalltalk.method({
539
539
  selector: "h4:",
540
540
  fn: function (anObject){
541
541
  var self=this;
542
- var $1;
543
- $1=smalltalk.send(smalltalk.send(self,"_h4",[]),"_with_",[anObject]);
542
+ return smalltalk.withContext(function($ctx1) {
543
+ $1=_st(_st(self)._h4())._with_(anObject);
544
544
  return $1;
545
- }
545
+ }, function($ctx1) {$ctx1.fill(self,"h4:",{anObject:anObject}, smalltalk.HTMLCanvas)})}
546
546
  }),
547
547
  smalltalk.HTMLCanvas);
548
548
 
@@ -552,10 +552,10 @@ smalltalk.method({
552
552
  selector: "h5",
553
553
  fn: function (){
554
554
  var self=this;
555
- var $1;
556
- $1=smalltalk.send(self,"_tag_",["h5"]);
555
+ return smalltalk.withContext(function($ctx1) {
556
+ $1=_st(self)._tag_("h5");
557
557
  return $1;
558
- }
558
+ }, function($ctx1) {$ctx1.fill(self,"h5",{}, smalltalk.HTMLCanvas)})}
559
559
  }),
560
560
  smalltalk.HTMLCanvas);
561
561
 
@@ -565,10 +565,10 @@ smalltalk.method({
565
565
  selector: "h5:",
566
566
  fn: function (anObject){
567
567
  var self=this;
568
- var $1;
569
- $1=smalltalk.send(smalltalk.send(self,"_h5",[]),"_with_",[anObject]);
568
+ return smalltalk.withContext(function($ctx1) {
569
+ $1=_st(_st(self)._h5())._with_(anObject);
570
570
  return $1;
571
- }
571
+ }, function($ctx1) {$ctx1.fill(self,"h5:",{anObject:anObject}, smalltalk.HTMLCanvas)})}
572
572
  }),
573
573
  smalltalk.HTMLCanvas);
574
574
 
@@ -578,10 +578,10 @@ smalltalk.method({
578
578
  selector: "h6",
579
579
  fn: function (){
580
580
  var self=this;
581
- var $1;
582
- $1=smalltalk.send(self,"_tag_",["h6"]);
581
+ return smalltalk.withContext(function($ctx1) {
582
+ $1=_st(self)._tag_("h6");
583
583
  return $1;
584
- }
584
+ }, function($ctx1) {$ctx1.fill(self,"h6",{}, smalltalk.HTMLCanvas)})}
585
585
  }),
586
586
  smalltalk.HTMLCanvas);
587
587
 
@@ -591,10 +591,10 @@ smalltalk.method({
591
591
  selector: "h6:",
592
592
  fn: function (anObject){
593
593
  var self=this;
594
- var $1;
595
- $1=smalltalk.send(smalltalk.send(self,"_h6",[]),"_with_",[anObject]);
594
+ return smalltalk.withContext(function($ctx1) {
595
+ $1=_st(_st(self)._h6())._with_(anObject);
596
596
  return $1;
597
- }
597
+ }, function($ctx1) {$ctx1.fill(self,"h6:",{anObject:anObject}, smalltalk.HTMLCanvas)})}
598
598
  }),
599
599
  smalltalk.HTMLCanvas);
600
600
 
@@ -604,10 +604,10 @@ smalltalk.method({
604
604
  selector: "head",
605
605
  fn: function (){
606
606
  var self=this;
607
- var $1;
608
- $1=smalltalk.send(self,"_tag_",["head"]);
607
+ return smalltalk.withContext(function($ctx1) {
608
+ $1=_st(self)._tag_("head");
609
609
  return $1;
610
- }
610
+ }, function($ctx1) {$ctx1.fill(self,"head",{}, smalltalk.HTMLCanvas)})}
611
611
  }),
612
612
  smalltalk.HTMLCanvas);
613
613
 
@@ -617,10 +617,10 @@ smalltalk.method({
617
617
  selector: "header",
618
618
  fn: function (){
619
619
  var self=this;
620
- var $1;
621
- $1=smalltalk.send(self,"_tag_",["header"]);
620
+ return smalltalk.withContext(function($ctx1) {
621
+ $1=_st(self)._tag_("header");
622
622
  return $1;
623
- }
623
+ }, function($ctx1) {$ctx1.fill(self,"header",{}, smalltalk.HTMLCanvas)})}
624
624
  }),
625
625
  smalltalk.HTMLCanvas);
626
626
 
@@ -630,10 +630,10 @@ smalltalk.method({
630
630
  selector: "hgroup",
631
631
  fn: function (){
632
632
  var self=this;
633
- var $1;
634
- $1=smalltalk.send(self,"_tag_",["hgroup"]);
633
+ return smalltalk.withContext(function($ctx1) {
634
+ $1=_st(self)._tag_("hgroup");
635
635
  return $1;
636
- }
636
+ }, function($ctx1) {$ctx1.fill(self,"hgroup",{}, smalltalk.HTMLCanvas)})}
637
637
  }),
638
638
  smalltalk.HTMLCanvas);
639
639
 
@@ -643,10 +643,10 @@ smalltalk.method({
643
643
  selector: "hr",
644
644
  fn: function (){
645
645
  var self=this;
646
- var $1;
647
- $1=smalltalk.send(self,"_tag_",["hr"]);
646
+ return smalltalk.withContext(function($ctx1) {
647
+ $1=_st(self)._tag_("hr");
648
648
  return $1;
649
- }
649
+ }, function($ctx1) {$ctx1.fill(self,"hr",{}, smalltalk.HTMLCanvas)})}
650
650
  }),
651
651
  smalltalk.HTMLCanvas);
652
652
 
@@ -656,10 +656,10 @@ smalltalk.method({
656
656
  selector: "html",
657
657
  fn: function (){
658
658
  var self=this;
659
- var $1;
660
- $1=smalltalk.send(self,"_tag_",["html"]);
659
+ return smalltalk.withContext(function($ctx1) {
660
+ $1=_st(self)._tag_("html");
661
661
  return $1;
662
- }
662
+ }, function($ctx1) {$ctx1.fill(self,"html",{}, smalltalk.HTMLCanvas)})}
663
663
  }),
664
664
  smalltalk.HTMLCanvas);
665
665
 
@@ -669,10 +669,10 @@ smalltalk.method({
669
669
  selector: "iframe",
670
670
  fn: function (){
671
671
  var self=this;
672
- var $1;
673
- $1=smalltalk.send(self,"_tag_",["iframe"]);
672
+ return smalltalk.withContext(function($ctx1) {
673
+ $1=_st(self)._tag_("iframe");
674
674
  return $1;
675
- }
675
+ }, function($ctx1) {$ctx1.fill(self,"iframe",{}, smalltalk.HTMLCanvas)})}
676
676
  }),
677
677
  smalltalk.HTMLCanvas);
678
678
 
@@ -682,10 +682,10 @@ smalltalk.method({
682
682
  selector: "iframe:",
683
683
  fn: function (aString){
684
684
  var self=this;
685
- var $1;
686
- $1=smalltalk.send(smalltalk.send(self,"_iframe",[]),"_src_",[aString]);
685
+ return smalltalk.withContext(function($ctx1) {
686
+ $1=_st(_st(self)._iframe())._src_(aString);
687
687
  return $1;
688
- }
688
+ }, function($ctx1) {$ctx1.fill(self,"iframe:",{aString:aString}, smalltalk.HTMLCanvas)})}
689
689
  }),
690
690
  smalltalk.HTMLCanvas);
691
691
 
@@ -695,10 +695,10 @@ smalltalk.method({
695
695
  selector: "img",
696
696
  fn: function (){
697
697
  var self=this;
698
- var $1;
699
- $1=smalltalk.send(self,"_tag_",["img"]);
698
+ return smalltalk.withContext(function($ctx1) {
699
+ $1=_st(self)._tag_("img");
700
700
  return $1;
701
- }
701
+ }, function($ctx1) {$ctx1.fill(self,"img",{}, smalltalk.HTMLCanvas)})}
702
702
  }),
703
703
  smalltalk.HTMLCanvas);
704
704
 
@@ -708,10 +708,10 @@ smalltalk.method({
708
708
  selector: "img:",
709
709
  fn: function (aString){
710
710
  var self=this;
711
- var $1;
712
- $1=smalltalk.send(smalltalk.send(self,"_img",[]),"_src_",[aString]);
711
+ return smalltalk.withContext(function($ctx1) {
712
+ $1=_st(_st(self)._img())._src_(aString);
713
713
  return $1;
714
- }
714
+ }, function($ctx1) {$ctx1.fill(self,"img:",{aString:aString}, smalltalk.HTMLCanvas)})}
715
715
  }),
716
716
  smalltalk.HTMLCanvas);
717
717
 
@@ -721,14 +721,16 @@ smalltalk.method({
721
721
  selector: "initialize",
722
722
  fn: function (){
723
723
  var self=this;
724
- smalltalk.send(self,"_initialize",[],smalltalk.Object);
725
- if(($receiver = self["@root"]) == nil || $receiver == undefined){
726
- self["@root"]=smalltalk.send((smalltalk.TagBrush || TagBrush),"_fromString_canvas_",["div",self]);
724
+ return smalltalk.withContext(function($ctx1) {
725
+ smalltalk.Object.fn.prototype._initialize.apply(_st(self), []);
726
+ $1=self["@root"];
727
+ if(($receiver = $1) == nil || $receiver == undefined){
728
+ self["@root"]=_st((smalltalk.TagBrush || TagBrush))._fromString_canvas_("div",self);
727
729
  self["@root"];
728
730
  } else {
729
- self["@root"];
731
+ $1;
730
732
  };
731
- return self}
733
+ return self}, function($ctx1) {$ctx1.fill(self,"initialize",{}, smalltalk.HTMLCanvas)})}
732
734
  }),
733
735
  smalltalk.HTMLCanvas);
734
736
 
@@ -738,8 +740,8 @@ smalltalk.method({
738
740
  selector: "initializeFromJQuery:",
739
741
  fn: function (aJQuery){
740
742
  var self=this;
741
- self["@root"]=smalltalk.send((smalltalk.TagBrush || TagBrush),"_fromJQuery_canvas_",[aJQuery,self]);
742
- return self}
743
+ return smalltalk.withContext(function($ctx1) {
744
+ return self}, function($ctx1) {$ctx1.fill(self,"initializeFromJQuery:",{aJQuery:aJQuery}, smalltalk.HTMLCanvas)})}
743
745
  }),
744
746
  smalltalk.HTMLCanvas);
745
747
 
@@ -749,10 +751,10 @@ smalltalk.method({
749
751
  selector: "input",
750
752
  fn: function (){
751
753
  var self=this;
752
- var $1;
753
- $1=smalltalk.send(self,"_tag_",["input"]);
754
+ return smalltalk.withContext(function($ctx1) {
755
+ $1=_st(self)._tag_("input");
754
756
  return $1;
755
- }
757
+ }, function($ctx1) {$ctx1.fill(self,"input",{}, smalltalk.HTMLCanvas)})}
756
758
  }),
757
759
  smalltalk.HTMLCanvas);
758
760
 
@@ -762,10 +764,10 @@ smalltalk.method({
762
764
  selector: "label",
763
765
  fn: function (){
764
766
  var self=this;
765
- var $1;
766
- $1=smalltalk.send(self,"_tag_",["label"]);
767
+ return smalltalk.withContext(function($ctx1) {
768
+ $1=_st(self)._tag_("label");
767
769
  return $1;
768
- }
770
+ }, function($ctx1) {$ctx1.fill(self,"label",{}, smalltalk.HTMLCanvas)})}
769
771
  }),
770
772
  smalltalk.HTMLCanvas);
771
773
 
@@ -775,10 +777,10 @@ smalltalk.method({
775
777
  selector: "legend",
776
778
  fn: function (){
777
779
  var self=this;
778
- var $1;
779
- $1=smalltalk.send(self,"_tag_",["legend"]);
780
+ return smalltalk.withContext(function($ctx1) {
781
+ $1=_st(self)._tag_("legend");
780
782
  return $1;
781
- }
783
+ }, function($ctx1) {$ctx1.fill(self,"legend",{}, smalltalk.HTMLCanvas)})}
782
784
  }),
783
785
  smalltalk.HTMLCanvas);
784
786
 
@@ -788,10 +790,10 @@ smalltalk.method({
788
790
  selector: "li",
789
791
  fn: function (){
790
792
  var self=this;
791
- var $1;
792
- $1=smalltalk.send(self,"_tag_",["li"]);
793
+ return smalltalk.withContext(function($ctx1) {
794
+ $1=_st(self)._tag_("li");
793
795
  return $1;
794
- }
796
+ }, function($ctx1) {$ctx1.fill(self,"li",{}, smalltalk.HTMLCanvas)})}
795
797
  }),
796
798
  smalltalk.HTMLCanvas);
797
799
 
@@ -801,10 +803,10 @@ smalltalk.method({
801
803
  selector: "li:",
802
804
  fn: function (anObject){
803
805
  var self=this;
804
- var $1;
805
- $1=smalltalk.send(smalltalk.send(self,"_li",[]),"_with_",[anObject]);
806
+ return smalltalk.withContext(function($ctx1) {
807
+ $1=_st(_st(self)._li())._with_(anObject);
806
808
  return $1;
807
- }
809
+ }, function($ctx1) {$ctx1.fill(self,"li:",{anObject:anObject}, smalltalk.HTMLCanvas)})}
808
810
  }),
809
811
  smalltalk.HTMLCanvas);
810
812
 
@@ -814,10 +816,10 @@ smalltalk.method({
814
816
  selector: "link",
815
817
  fn: function (){
816
818
  var self=this;
817
- var $1;
818
- $1=smalltalk.send(self,"_tag_",["link"]);
819
+ return smalltalk.withContext(function($ctx1) {
820
+ $1=_st(self)._tag_("link");
819
821
  return $1;
820
- }
822
+ }, function($ctx1) {$ctx1.fill(self,"link",{}, smalltalk.HTMLCanvas)})}
821
823
  }),
822
824
  smalltalk.HTMLCanvas);
823
825
 
@@ -827,10 +829,10 @@ smalltalk.method({
827
829
  selector: "map",
828
830
  fn: function (){
829
831
  var self=this;
830
- var $1;
831
- $1=smalltalk.send(self,"_tag_",["map"]);
832
+ return smalltalk.withContext(function($ctx1) {
833
+ $1=_st(self)._tag_("map");
832
834
  return $1;
833
- }
835
+ }, function($ctx1) {$ctx1.fill(self,"map",{}, smalltalk.HTMLCanvas)})}
834
836
  }),
835
837
  smalltalk.HTMLCanvas);
836
838
 
@@ -840,10 +842,10 @@ smalltalk.method({
840
842
  selector: "mark",
841
843
  fn: function (){
842
844
  var self=this;
843
- var $1;
844
- $1=smalltalk.send(self,"_tag_",["mark"]);
845
+ return smalltalk.withContext(function($ctx1) {
846
+ $1=_st(self)._tag_("mark");
845
847
  return $1;
846
- }
848
+ }, function($ctx1) {$ctx1.fill(self,"mark",{}, smalltalk.HTMLCanvas)})}
847
849
  }),
848
850
  smalltalk.HTMLCanvas);
849
851
 
@@ -853,10 +855,10 @@ smalltalk.method({
853
855
  selector: "menu",
854
856
  fn: function (){
855
857
  var self=this;
856
- var $1;
857
- $1=smalltalk.send(self,"_tag_",["menu"]);
858
+ return smalltalk.withContext(function($ctx1) {
859
+ $1=_st(self)._tag_("menu");
858
860
  return $1;
859
- }
861
+ }, function($ctx1) {$ctx1.fill(self,"menu",{}, smalltalk.HTMLCanvas)})}
860
862
  }),
861
863
  smalltalk.HTMLCanvas);
862
864
 
@@ -866,10 +868,10 @@ smalltalk.method({
866
868
  selector: "meta",
867
869
  fn: function (){
868
870
  var self=this;
869
- var $1;
870
- $1=smalltalk.send(self,"_tag_",["meta"]);
871
+ return smalltalk.withContext(function($ctx1) {
872
+ $1=_st(self)._tag_("meta");
871
873
  return $1;
872
- }
874
+ }, function($ctx1) {$ctx1.fill(self,"meta",{}, smalltalk.HTMLCanvas)})}
873
875
  }),
874
876
  smalltalk.HTMLCanvas);
875
877
 
@@ -879,10 +881,10 @@ smalltalk.method({
879
881
  selector: "nav",
880
882
  fn: function (){
881
883
  var self=this;
882
- var $1;
883
- $1=smalltalk.send(self,"_tag_",["nav"]);
884
+ return smalltalk.withContext(function($ctx1) {
885
+ $1=_st(self)._tag_("nav");
884
886
  return $1;
885
- }
887
+ }, function($ctx1) {$ctx1.fill(self,"nav",{}, smalltalk.HTMLCanvas)})}
886
888
  }),
887
889
  smalltalk.HTMLCanvas);
888
890
 
@@ -892,10 +894,10 @@ smalltalk.method({
892
894
  selector: "newTag:",
893
895
  fn: function (aString){
894
896
  var self=this;
895
- var $1;
896
- $1=smalltalk.send((smalltalk.TagBrush || TagBrush),"_fromString_canvas_",[aString,self]);
897
+ return smalltalk.withContext(function($ctx1) {
898
+ $1=_st((smalltalk.TagBrush || TagBrush))._fromString_canvas_(aString,self);
897
899
  return $1;
898
- }
900
+ }, function($ctx1) {$ctx1.fill(self,"newTag:",{aString:aString}, smalltalk.HTMLCanvas)})}
899
901
  }),
900
902
  smalltalk.HTMLCanvas);
901
903
 
@@ -905,10 +907,10 @@ smalltalk.method({
905
907
  selector: "noscript",
906
908
  fn: function (){
907
909
  var self=this;
908
- var $1;
909
- $1=smalltalk.send(self,"_tag_",["noscript"]);
910
+ return smalltalk.withContext(function($ctx1) {
911
+ $1=_st(self)._tag_("noscript");
910
912
  return $1;
911
- }
913
+ }, function($ctx1) {$ctx1.fill(self,"noscript",{}, smalltalk.HTMLCanvas)})}
912
914
  }),
913
915
  smalltalk.HTMLCanvas);
914
916
 
@@ -918,10 +920,10 @@ smalltalk.method({
918
920
  selector: "object",
919
921
  fn: function (){
920
922
  var self=this;
921
- var $1;
922
- $1=smalltalk.send(self,"_tag_",["object"]);
923
+ return smalltalk.withContext(function($ctx1) {
924
+ $1=_st(self)._tag_("object");
923
925
  return $1;
924
- }
926
+ }, function($ctx1) {$ctx1.fill(self,"object",{}, smalltalk.HTMLCanvas)})}
925
927
  }),
926
928
  smalltalk.HTMLCanvas);
927
929
 
@@ -931,10 +933,10 @@ smalltalk.method({
931
933
  selector: "ol",
932
934
  fn: function (){
933
935
  var self=this;
934
- var $1;
935
- $1=smalltalk.send(self,"_tag_",["ol"]);
936
+ return smalltalk.withContext(function($ctx1) {
937
+ $1=_st(self)._tag_("ol");
936
938
  return $1;
937
- }
939
+ }, function($ctx1) {$ctx1.fill(self,"ol",{}, smalltalk.HTMLCanvas)})}
938
940
  }),
939
941
  smalltalk.HTMLCanvas);
940
942
 
@@ -944,10 +946,10 @@ smalltalk.method({
944
946
  selector: "ol:",
945
947
  fn: function (anObject){
946
948
  var self=this;
947
- var $1;
948
- $1=smalltalk.send(smalltalk.send(self,"_ol",[]),"_with_",[anObject]);
949
+ return smalltalk.withContext(function($ctx1) {
950
+ $1=_st(_st(self)._ol())._with_(anObject);
949
951
  return $1;
950
- }
952
+ }, function($ctx1) {$ctx1.fill(self,"ol:",{anObject:anObject}, smalltalk.HTMLCanvas)})}
951
953
  }),
952
954
  smalltalk.HTMLCanvas);
953
955
 
@@ -957,10 +959,10 @@ smalltalk.method({
957
959
  selector: "optgroup",
958
960
  fn: function (){
959
961
  var self=this;
960
- var $1;
961
- $1=smalltalk.send(self,"_tag_",["optgroup"]);
962
+ return smalltalk.withContext(function($ctx1) {
963
+ $1=_st(self)._tag_("optgroup");
962
964
  return $1;
963
- }
965
+ }, function($ctx1) {$ctx1.fill(self,"optgroup",{}, smalltalk.HTMLCanvas)})}
964
966
  }),
965
967
  smalltalk.HTMLCanvas);
966
968
 
@@ -970,10 +972,10 @@ smalltalk.method({
970
972
  selector: "option",
971
973
  fn: function (){
972
974
  var self=this;
973
- var $1;
974
- $1=smalltalk.send(self,"_tag_",["option"]);
975
+ return smalltalk.withContext(function($ctx1) {
976
+ $1=_st(self)._tag_("option");
975
977
  return $1;
976
- }
978
+ }, function($ctx1) {$ctx1.fill(self,"option",{}, smalltalk.HTMLCanvas)})}
977
979
  }),
978
980
  smalltalk.HTMLCanvas);
979
981
 
@@ -983,10 +985,10 @@ smalltalk.method({
983
985
  selector: "output",
984
986
  fn: function (){
985
987
  var self=this;
986
- var $1;
987
- $1=smalltalk.send(self,"_tag_",["output"]);
988
+ return smalltalk.withContext(function($ctx1) {
989
+ $1=_st(self)._tag_("output");
988
990
  return $1;
989
- }
991
+ }, function($ctx1) {$ctx1.fill(self,"output",{}, smalltalk.HTMLCanvas)})}
990
992
  }),
991
993
  smalltalk.HTMLCanvas);
992
994
 
@@ -996,10 +998,10 @@ smalltalk.method({
996
998
  selector: "p",
997
999
  fn: function (){
998
1000
  var self=this;
999
- var $1;
1000
- $1=smalltalk.send(self,"_tag_",["p"]);
1001
+ return smalltalk.withContext(function($ctx1) {
1002
+ $1=_st(self)._tag_("p");
1001
1003
  return $1;
1002
- }
1004
+ }, function($ctx1) {$ctx1.fill(self,"p",{}, smalltalk.HTMLCanvas)})}
1003
1005
  }),
1004
1006
  smalltalk.HTMLCanvas);
1005
1007
 
@@ -1009,10 +1011,10 @@ smalltalk.method({
1009
1011
  selector: "p:",
1010
1012
  fn: function (anObject){
1011
1013
  var self=this;
1012
- var $1;
1013
- $1=smalltalk.send(smalltalk.send(self,"_p",[]),"_with_",[anObject]);
1014
+ return smalltalk.withContext(function($ctx1) {
1015
+ $1=_st(_st(self)._p())._with_(anObject);
1014
1016
  return $1;
1015
- }
1017
+ }, function($ctx1) {$ctx1.fill(self,"p:",{anObject:anObject}, smalltalk.HTMLCanvas)})}
1016
1018
  }),
1017
1019
  smalltalk.HTMLCanvas);
1018
1020
 
@@ -1022,10 +1024,10 @@ smalltalk.method({
1022
1024
  selector: "param",
1023
1025
  fn: function (){
1024
1026
  var self=this;
1025
- var $1;
1026
- $1=smalltalk.send(self,"_tag_",["param"]);
1027
+ return smalltalk.withContext(function($ctx1) {
1028
+ $1=_st(self)._tag_("param");
1027
1029
  return $1;
1028
- }
1030
+ }, function($ctx1) {$ctx1.fill(self,"param",{}, smalltalk.HTMLCanvas)})}
1029
1031
  }),
1030
1032
  smalltalk.HTMLCanvas);
1031
1033
 
@@ -1035,10 +1037,10 @@ smalltalk.method({
1035
1037
  selector: "pre",
1036
1038
  fn: function (){
1037
1039
  var self=this;
1038
- var $1;
1039
- $1=smalltalk.send(self,"_tag_",["pre"]);
1040
+ return smalltalk.withContext(function($ctx1) {
1041
+ $1=_st(self)._tag_("pre");
1040
1042
  return $1;
1041
- }
1043
+ }, function($ctx1) {$ctx1.fill(self,"pre",{}, smalltalk.HTMLCanvas)})}
1042
1044
  }),
1043
1045
  smalltalk.HTMLCanvas);
1044
1046
 
@@ -1048,10 +1050,10 @@ smalltalk.method({
1048
1050
  selector: "progress",
1049
1051
  fn: function (){
1050
1052
  var self=this;
1051
- var $1;
1052
- $1=smalltalk.send(self,"_tag_",["progress"]);
1053
+ return smalltalk.withContext(function($ctx1) {
1054
+ $1=_st(self)._tag_("progress");
1053
1055
  return $1;
1054
- }
1056
+ }, function($ctx1) {$ctx1.fill(self,"progress",{}, smalltalk.HTMLCanvas)})}
1055
1057
  }),
1056
1058
  smalltalk.HTMLCanvas);
1057
1059
 
@@ -1061,8 +1063,10 @@ smalltalk.method({
1061
1063
  selector: "root",
1062
1064
  fn: function (){
1063
1065
  var self=this;
1064
- return self["@root"];
1065
- }
1066
+ return smalltalk.withContext(function($ctx1) {
1067
+ $1=self["@root"];
1068
+ return $1;
1069
+ }, function($ctx1) {$ctx1.fill(self,"root",{}, smalltalk.HTMLCanvas)})}
1066
1070
  }),
1067
1071
  smalltalk.HTMLCanvas);
1068
1072
 
@@ -1072,8 +1076,8 @@ smalltalk.method({
1072
1076
  selector: "root:",
1073
1077
  fn: function (aTagBrush){
1074
1078
  var self=this;
1075
- self["@root"]=aTagBrush;
1076
- return self}
1079
+ return smalltalk.withContext(function($ctx1) {
1080
+ return self}, function($ctx1) {$ctx1.fill(self,"root:",{aTagBrush:aTagBrush}, smalltalk.HTMLCanvas)})}
1077
1081
  }),
1078
1082
  smalltalk.HTMLCanvas);
1079
1083
 
@@ -1083,10 +1087,10 @@ smalltalk.method({
1083
1087
  selector: "script",
1084
1088
  fn: function (){
1085
1089
  var self=this;
1086
- var $1;
1087
- $1=smalltalk.send(self,"_tag_",["script"]);
1090
+ return smalltalk.withContext(function($ctx1) {
1091
+ $1=_st(self)._tag_("script");
1088
1092
  return $1;
1089
- }
1093
+ }, function($ctx1) {$ctx1.fill(self,"script",{}, smalltalk.HTMLCanvas)})}
1090
1094
  }),
1091
1095
  smalltalk.HTMLCanvas);
1092
1096
 
@@ -1096,10 +1100,10 @@ smalltalk.method({
1096
1100
  selector: "section",
1097
1101
  fn: function (){
1098
1102
  var self=this;
1099
- var $1;
1100
- $1=smalltalk.send(self,"_tag_",["section"]);
1103
+ return smalltalk.withContext(function($ctx1) {
1104
+ $1=_st(self)._tag_("section");
1101
1105
  return $1;
1102
- }
1106
+ }, function($ctx1) {$ctx1.fill(self,"section",{}, smalltalk.HTMLCanvas)})}
1103
1107
  }),
1104
1108
  smalltalk.HTMLCanvas);
1105
1109
 
@@ -1109,10 +1113,10 @@ smalltalk.method({
1109
1113
  selector: "select",
1110
1114
  fn: function (){
1111
1115
  var self=this;
1112
- var $1;
1113
- $1=smalltalk.send(self,"_tag_",["select"]);
1116
+ return smalltalk.withContext(function($ctx1) {
1117
+ $1=_st(self)._tag_("select");
1114
1118
  return $1;
1115
- }
1119
+ }, function($ctx1) {$ctx1.fill(self,"select",{}, smalltalk.HTMLCanvas)})}
1116
1120
  }),
1117
1121
  smalltalk.HTMLCanvas);
1118
1122
 
@@ -1122,10 +1126,10 @@ smalltalk.method({
1122
1126
  selector: "small",
1123
1127
  fn: function (){
1124
1128
  var self=this;
1125
- var $1;
1126
- $1=smalltalk.send(self,"_tag_",["small"]);
1129
+ return smalltalk.withContext(function($ctx1) {
1130
+ $1=_st(self)._tag_("small");
1127
1131
  return $1;
1128
- }
1132
+ }, function($ctx1) {$ctx1.fill(self,"small",{}, smalltalk.HTMLCanvas)})}
1129
1133
  }),
1130
1134
  smalltalk.HTMLCanvas);
1131
1135
 
@@ -1135,10 +1139,10 @@ smalltalk.method({
1135
1139
  selector: "source",
1136
1140
  fn: function (){
1137
1141
  var self=this;
1138
- var $1;
1139
- $1=smalltalk.send(self,"_tag_",["source"]);
1142
+ return smalltalk.withContext(function($ctx1) {
1143
+ $1=_st(self)._tag_("source");
1140
1144
  return $1;
1141
- }
1145
+ }, function($ctx1) {$ctx1.fill(self,"source",{}, smalltalk.HTMLCanvas)})}
1142
1146
  }),
1143
1147
  smalltalk.HTMLCanvas);
1144
1148
 
@@ -1148,10 +1152,10 @@ smalltalk.method({
1148
1152
  selector: "span",
1149
1153
  fn: function (){
1150
1154
  var self=this;
1151
- var $1;
1152
- $1=smalltalk.send(self,"_tag_",["span"]);
1155
+ return smalltalk.withContext(function($ctx1) {
1156
+ $1=_st(self)._tag_("span");
1153
1157
  return $1;
1154
- }
1158
+ }, function($ctx1) {$ctx1.fill(self,"span",{}, smalltalk.HTMLCanvas)})}
1155
1159
  }),
1156
1160
  smalltalk.HTMLCanvas);
1157
1161
 
@@ -1161,10 +1165,10 @@ smalltalk.method({
1161
1165
  selector: "span:",
1162
1166
  fn: function (anObject){
1163
1167
  var self=this;
1164
- var $1;
1165
- $1=smalltalk.send(smalltalk.send(self,"_span",[]),"_with_",[anObject]);
1168
+ return smalltalk.withContext(function($ctx1) {
1169
+ $1=_st(_st(self)._span())._with_(anObject);
1166
1170
  return $1;
1167
- }
1171
+ }, function($ctx1) {$ctx1.fill(self,"span:",{anObject:anObject}, smalltalk.HTMLCanvas)})}
1168
1172
  }),
1169
1173
  smalltalk.HTMLCanvas);
1170
1174
 
@@ -1174,10 +1178,10 @@ smalltalk.method({
1174
1178
  selector: "strong",
1175
1179
  fn: function (){
1176
1180
  var self=this;
1177
- var $1;
1178
- $1=smalltalk.send(self,"_tag_",["strong"]);
1181
+ return smalltalk.withContext(function($ctx1) {
1182
+ $1=_st(self)._tag_("strong");
1179
1183
  return $1;
1180
- }
1184
+ }, function($ctx1) {$ctx1.fill(self,"strong",{}, smalltalk.HTMLCanvas)})}
1181
1185
  }),
1182
1186
  smalltalk.HTMLCanvas);
1183
1187
 
@@ -1187,10 +1191,10 @@ smalltalk.method({
1187
1191
  selector: "strong:",
1188
1192
  fn: function (anObject){
1189
1193
  var self=this;
1190
- var $1;
1191
- $1=smalltalk.send(smalltalk.send(self,"_strong",[]),"_with_",[anObject]);
1194
+ return smalltalk.withContext(function($ctx1) {
1195
+ $1=_st(_st(self)._strong())._with_(anObject);
1192
1196
  return $1;
1193
- }
1197
+ }, function($ctx1) {$ctx1.fill(self,"strong:",{anObject:anObject}, smalltalk.HTMLCanvas)})}
1194
1198
  }),
1195
1199
  smalltalk.HTMLCanvas);
1196
1200
 
@@ -1200,10 +1204,10 @@ smalltalk.method({
1200
1204
  selector: "style",
1201
1205
  fn: function (){
1202
1206
  var self=this;
1203
- var $1;
1204
- $1=smalltalk.send(self["@root"],"_addBrush_",[smalltalk.send((smalltalk.StyleTag || StyleTag),"_canvas_",[self])]);
1207
+ return smalltalk.withContext(function($ctx1) {
1208
+ $1=_st(self["@root"])._addBrush_(_st((smalltalk.StyleTag || StyleTag))._canvas_(self));
1205
1209
  return $1;
1206
- }
1210
+ }, function($ctx1) {$ctx1.fill(self,"style",{}, smalltalk.HTMLCanvas)})}
1207
1211
  }),
1208
1212
  smalltalk.HTMLCanvas);
1209
1213
 
@@ -1213,13 +1217,13 @@ smalltalk.method({
1213
1217
  selector: "style:",
1214
1218
  fn: function (aString){
1215
1219
  var self=this;
1216
- var $2,$3,$1;
1217
- $2=smalltalk.send(self,"_style",[]);
1218
- smalltalk.send($2,"_with_",[aString]);
1219
- $3=smalltalk.send($2,"_yourself",[]);
1220
+ return smalltalk.withContext(function($ctx1) {
1221
+ $2=_st(self)._style();
1222
+ _st($2)._with_(aString);
1223
+ $3=_st($2)._yourself();
1220
1224
  $1=$3;
1221
1225
  return $1;
1222
- }
1226
+ }, function($ctx1) {$ctx1.fill(self,"style:",{aString:aString}, smalltalk.HTMLCanvas)})}
1223
1227
  }),
1224
1228
  smalltalk.HTMLCanvas);
1225
1229
 
@@ -1229,10 +1233,10 @@ smalltalk.method({
1229
1233
  selector: "sub",
1230
1234
  fn: function (){
1231
1235
  var self=this;
1232
- var $1;
1233
- $1=smalltalk.send(self,"_tag_",["sub"]);
1236
+ return smalltalk.withContext(function($ctx1) {
1237
+ $1=_st(self)._tag_("sub");
1234
1238
  return $1;
1235
- }
1239
+ }, function($ctx1) {$ctx1.fill(self,"sub",{}, smalltalk.HTMLCanvas)})}
1236
1240
  }),
1237
1241
  smalltalk.HTMLCanvas);
1238
1242
 
@@ -1242,10 +1246,10 @@ smalltalk.method({
1242
1246
  selector: "summary",
1243
1247
  fn: function (){
1244
1248
  var self=this;
1245
- var $1;
1246
- $1=smalltalk.send(self,"_tag_",["summary"]);
1249
+ return smalltalk.withContext(function($ctx1) {
1250
+ $1=_st(self)._tag_("summary");
1247
1251
  return $1;
1248
- }
1252
+ }, function($ctx1) {$ctx1.fill(self,"summary",{}, smalltalk.HTMLCanvas)})}
1249
1253
  }),
1250
1254
  smalltalk.HTMLCanvas);
1251
1255
 
@@ -1255,10 +1259,10 @@ smalltalk.method({
1255
1259
  selector: "sup",
1256
1260
  fn: function (){
1257
1261
  var self=this;
1258
- var $1;
1259
- $1=smalltalk.send(self,"_tag_",["sup"]);
1262
+ return smalltalk.withContext(function($ctx1) {
1263
+ $1=_st(self)._tag_("sup");
1260
1264
  return $1;
1261
- }
1265
+ }, function($ctx1) {$ctx1.fill(self,"sup",{}, smalltalk.HTMLCanvas)})}
1262
1266
  }),
1263
1267
  smalltalk.HTMLCanvas);
1264
1268
 
@@ -1268,10 +1272,10 @@ smalltalk.method({
1268
1272
  selector: "table",
1269
1273
  fn: function (){
1270
1274
  var self=this;
1271
- var $1;
1272
- $1=smalltalk.send(self,"_tag_",["table"]);
1275
+ return smalltalk.withContext(function($ctx1) {
1276
+ $1=_st(self)._tag_("table");
1273
1277
  return $1;
1274
- }
1278
+ }, function($ctx1) {$ctx1.fill(self,"table",{}, smalltalk.HTMLCanvas)})}
1275
1279
  }),
1276
1280
  smalltalk.HTMLCanvas);
1277
1281
 
@@ -1281,10 +1285,10 @@ smalltalk.method({
1281
1285
  selector: "tag:",
1282
1286
  fn: function (aString){
1283
1287
  var self=this;
1284
- var $1;
1285
- $1=smalltalk.send(self["@root"],"_addBrush_",[smalltalk.send(self,"_newTag_",[aString])]);
1288
+ return smalltalk.withContext(function($ctx1) {
1289
+ $1=_st(self["@root"])._addBrush_(_st(self)._newTag_(aString));
1286
1290
  return $1;
1287
- }
1291
+ }, function($ctx1) {$ctx1.fill(self,"tag:",{aString:aString}, smalltalk.HTMLCanvas)})}
1288
1292
  }),
1289
1293
  smalltalk.HTMLCanvas);
1290
1294
 
@@ -1294,10 +1298,10 @@ smalltalk.method({
1294
1298
  selector: "tbody",
1295
1299
  fn: function (){
1296
1300
  var self=this;
1297
- var $1;
1298
- $1=smalltalk.send(self,"_tag_",["tbody"]);
1301
+ return smalltalk.withContext(function($ctx1) {
1302
+ $1=_st(self)._tag_("tbody");
1299
1303
  return $1;
1300
- }
1304
+ }, function($ctx1) {$ctx1.fill(self,"tbody",{}, smalltalk.HTMLCanvas)})}
1301
1305
  }),
1302
1306
  smalltalk.HTMLCanvas);
1303
1307
 
@@ -1307,10 +1311,10 @@ smalltalk.method({
1307
1311
  selector: "td",
1308
1312
  fn: function (){
1309
1313
  var self=this;
1310
- var $1;
1311
- $1=smalltalk.send(self,"_tag_",["td"]);
1314
+ return smalltalk.withContext(function($ctx1) {
1315
+ $1=_st(self)._tag_("td");
1312
1316
  return $1;
1313
- }
1317
+ }, function($ctx1) {$ctx1.fill(self,"td",{}, smalltalk.HTMLCanvas)})}
1314
1318
  }),
1315
1319
  smalltalk.HTMLCanvas);
1316
1320
 
@@ -1320,10 +1324,10 @@ smalltalk.method({
1320
1324
  selector: "textarea",
1321
1325
  fn: function (){
1322
1326
  var self=this;
1323
- var $1;
1324
- $1=smalltalk.send(self,"_tag_",["textarea"]);
1327
+ return smalltalk.withContext(function($ctx1) {
1328
+ $1=_st(self)._tag_("textarea");
1325
1329
  return $1;
1326
- }
1330
+ }, function($ctx1) {$ctx1.fill(self,"textarea",{}, smalltalk.HTMLCanvas)})}
1327
1331
  }),
1328
1332
  smalltalk.HTMLCanvas);
1329
1333
 
@@ -1333,10 +1337,10 @@ smalltalk.method({
1333
1337
  selector: "tfoot",
1334
1338
  fn: function (){
1335
1339
  var self=this;
1336
- var $1;
1337
- $1=smalltalk.send(self,"_tag_",["tfoot"]);
1340
+ return smalltalk.withContext(function($ctx1) {
1341
+ $1=_st(self)._tag_("tfoot");
1338
1342
  return $1;
1339
- }
1343
+ }, function($ctx1) {$ctx1.fill(self,"tfoot",{}, smalltalk.HTMLCanvas)})}
1340
1344
  }),
1341
1345
  smalltalk.HTMLCanvas);
1342
1346
 
@@ -1346,10 +1350,10 @@ smalltalk.method({
1346
1350
  selector: "th",
1347
1351
  fn: function (){
1348
1352
  var self=this;
1349
- var $1;
1350
- $1=smalltalk.send(self,"_tag_",["th"]);
1353
+ return smalltalk.withContext(function($ctx1) {
1354
+ $1=_st(self)._tag_("th");
1351
1355
  return $1;
1352
- }
1356
+ }, function($ctx1) {$ctx1.fill(self,"th",{}, smalltalk.HTMLCanvas)})}
1353
1357
  }),
1354
1358
  smalltalk.HTMLCanvas);
1355
1359
 
@@ -1359,10 +1363,10 @@ smalltalk.method({
1359
1363
  selector: "thead",
1360
1364
  fn: function (){
1361
1365
  var self=this;
1362
- var $1;
1363
- $1=smalltalk.send(self,"_tag_",["thead"]);
1366
+ return smalltalk.withContext(function($ctx1) {
1367
+ $1=_st(self)._tag_("thead");
1364
1368
  return $1;
1365
- }
1369
+ }, function($ctx1) {$ctx1.fill(self,"thead",{}, smalltalk.HTMLCanvas)})}
1366
1370
  }),
1367
1371
  smalltalk.HTMLCanvas);
1368
1372
 
@@ -1372,10 +1376,10 @@ smalltalk.method({
1372
1376
  selector: "time",
1373
1377
  fn: function (){
1374
1378
  var self=this;
1375
- var $1;
1376
- $1=smalltalk.send(self,"_tag_",["time"]);
1379
+ return smalltalk.withContext(function($ctx1) {
1380
+ $1=_st(self)._tag_("time");
1377
1381
  return $1;
1378
- }
1382
+ }, function($ctx1) {$ctx1.fill(self,"time",{}, smalltalk.HTMLCanvas)})}
1379
1383
  }),
1380
1384
  smalltalk.HTMLCanvas);
1381
1385
 
@@ -1385,10 +1389,10 @@ smalltalk.method({
1385
1389
  selector: "title",
1386
1390
  fn: function (){
1387
1391
  var self=this;
1388
- var $1;
1389
- $1=smalltalk.send(self,"_tag_",["title"]);
1392
+ return smalltalk.withContext(function($ctx1) {
1393
+ $1=_st(self)._tag_("title");
1390
1394
  return $1;
1391
- }
1395
+ }, function($ctx1) {$ctx1.fill(self,"title",{}, smalltalk.HTMLCanvas)})}
1392
1396
  }),
1393
1397
  smalltalk.HTMLCanvas);
1394
1398
 
@@ -1398,10 +1402,10 @@ smalltalk.method({
1398
1402
  selector: "tr",
1399
1403
  fn: function (){
1400
1404
  var self=this;
1401
- var $1;
1402
- $1=smalltalk.send(self,"_tag_",["tr"]);
1405
+ return smalltalk.withContext(function($ctx1) {
1406
+ $1=_st(self)._tag_("tr");
1403
1407
  return $1;
1404
- }
1408
+ }, function($ctx1) {$ctx1.fill(self,"tr",{}, smalltalk.HTMLCanvas)})}
1405
1409
  }),
1406
1410
  smalltalk.HTMLCanvas);
1407
1411
 
@@ -1411,10 +1415,10 @@ smalltalk.method({
1411
1415
  selector: "ul",
1412
1416
  fn: function (){
1413
1417
  var self=this;
1414
- var $1;
1415
- $1=smalltalk.send(self,"_tag_",["ul"]);
1418
+ return smalltalk.withContext(function($ctx1) {
1419
+ $1=_st(self)._tag_("ul");
1416
1420
  return $1;
1417
- }
1421
+ }, function($ctx1) {$ctx1.fill(self,"ul",{}, smalltalk.HTMLCanvas)})}
1418
1422
  }),
1419
1423
  smalltalk.HTMLCanvas);
1420
1424
 
@@ -1424,10 +1428,10 @@ smalltalk.method({
1424
1428
  selector: "ul:",
1425
1429
  fn: function (anObject){
1426
1430
  var self=this;
1427
- var $1;
1428
- $1=smalltalk.send(smalltalk.send(self,"_ul",[]),"_with_",[anObject]);
1431
+ return smalltalk.withContext(function($ctx1) {
1432
+ $1=_st(_st(self)._ul())._with_(anObject);
1429
1433
  return $1;
1430
- }
1434
+ }, function($ctx1) {$ctx1.fill(self,"ul:",{anObject:anObject}, smalltalk.HTMLCanvas)})}
1431
1435
  }),
1432
1436
  smalltalk.HTMLCanvas);
1433
1437
 
@@ -1437,10 +1441,10 @@ smalltalk.method({
1437
1441
  selector: "video",
1438
1442
  fn: function (){
1439
1443
  var self=this;
1440
- var $1;
1441
- $1=smalltalk.send(self,"_tag_",["video"]);
1444
+ return smalltalk.withContext(function($ctx1) {
1445
+ $1=_st(self)._tag_("video");
1442
1446
  return $1;
1443
- }
1447
+ }, function($ctx1) {$ctx1.fill(self,"video",{}, smalltalk.HTMLCanvas)})}
1444
1448
  }),
1445
1449
  smalltalk.HTMLCanvas);
1446
1450
 
@@ -1450,10 +1454,10 @@ smalltalk.method({
1450
1454
  selector: "with:",
1451
1455
  fn: function (anObject){
1452
1456
  var self=this;
1453
- var $1;
1454
- $1=smalltalk.send(smalltalk.send(self,"_root",[]),"_with_",[anObject]);
1457
+ return smalltalk.withContext(function($ctx1) {
1458
+ $1=_st(_st(self)._root())._with_(anObject);
1455
1459
  return $1;
1456
- }
1460
+ }, function($ctx1) {$ctx1.fill(self,"with:",{anObject:anObject}, smalltalk.HTMLCanvas)})}
1457
1461
  }),
1458
1462
  smalltalk.HTMLCanvas);
1459
1463
 
@@ -1464,10 +1468,10 @@ smalltalk.method({
1464
1468
  selector: "browserVersion",
1465
1469
  fn: function (){
1466
1470
  var self=this;
1467
- var $1;
1468
- $1=smalltalk.send(smalltalk.send(jQuery,"_at_",[smalltalk.symbolFor("browser")]),"_version",[]);
1471
+ return smalltalk.withContext(function($ctx1) {
1472
+ $1=_st(_st(jQuery)._at_(smalltalk.symbolFor("browser")))._version();
1469
1473
  return $1;
1470
- }
1474
+ }, function($ctx1) {$ctx1.fill(self,"browserVersion",{}, smalltalk.HTMLCanvas.klass)})}
1471
1475
  }),
1472
1476
  smalltalk.HTMLCanvas.klass);
1473
1477
 
@@ -1477,10 +1481,10 @@ smalltalk.method({
1477
1481
  selector: "isMSIE",
1478
1482
  fn: function (){
1479
1483
  var self=this;
1480
- var $1;
1481
- $1=smalltalk.send(smalltalk.send(smalltalk.send(jQuery,"_at_",[smalltalk.symbolFor("browser")]),"_at_",[smalltalk.symbolFor("msie")]),"_notNil",[]);
1484
+ return smalltalk.withContext(function($ctx1) {
1485
+ $1=_st(_st(_st(jQuery)._at_(smalltalk.symbolFor("browser")))._at_(smalltalk.symbolFor("msie")))._notNil();
1482
1486
  return $1;
1483
- }
1487
+ }, function($ctx1) {$ctx1.fill(self,"isMSIE",{}, smalltalk.HTMLCanvas.klass)})}
1484
1488
  }),
1485
1489
  smalltalk.HTMLCanvas.klass);
1486
1490
 
@@ -1490,10 +1494,10 @@ smalltalk.method({
1490
1494
  selector: "isMozilla",
1491
1495
  fn: function (){
1492
1496
  var self=this;
1493
- var $1;
1494
- $1=smalltalk.send(smalltalk.send(smalltalk.send(jQuery,"_at_",[smalltalk.symbolFor("browser")]),"_at_",[smalltalk.symbolFor("mozilla")]),"_notNil",[]);
1497
+ return smalltalk.withContext(function($ctx1) {
1498
+ $1=_st(_st(_st(jQuery)._at_(smalltalk.symbolFor("browser")))._at_(smalltalk.symbolFor("mozilla")))._notNil();
1495
1499
  return $1;
1496
- }
1500
+ }, function($ctx1) {$ctx1.fill(self,"isMozilla",{}, smalltalk.HTMLCanvas.klass)})}
1497
1501
  }),
1498
1502
  smalltalk.HTMLCanvas.klass);
1499
1503
 
@@ -1503,10 +1507,10 @@ smalltalk.method({
1503
1507
  selector: "isOpera",
1504
1508
  fn: function (){
1505
1509
  var self=this;
1506
- var $1;
1507
- $1=smalltalk.send(smalltalk.send(smalltalk.send(jQuery,"_at_",[smalltalk.symbolFor("browser")]),"_at_",[smalltalk.symbolFor("opera")]),"_notNil",[]);
1510
+ return smalltalk.withContext(function($ctx1) {
1511
+ $1=_st(_st(_st(jQuery)._at_(smalltalk.symbolFor("browser")))._at_(smalltalk.symbolFor("opera")))._notNil();
1508
1512
  return $1;
1509
- }
1513
+ }, function($ctx1) {$ctx1.fill(self,"isOpera",{}, smalltalk.HTMLCanvas.klass)})}
1510
1514
  }),
1511
1515
  smalltalk.HTMLCanvas.klass);
1512
1516
 
@@ -1516,10 +1520,10 @@ smalltalk.method({
1516
1520
  selector: "isWebkit",
1517
1521
  fn: function (){
1518
1522
  var self=this;
1519
- var $1;
1520
- $1=smalltalk.send(smalltalk.send(smalltalk.send(jQuery,"_at_",[smalltalk.symbolFor("browser")]),"_at_",[smalltalk.symbolFor("webkit")]),"_notNil",[]);
1523
+ return smalltalk.withContext(function($ctx1) {
1524
+ $1=_st(_st(_st(jQuery)._at_(smalltalk.symbolFor("browser")))._at_(smalltalk.symbolFor("webkit")))._notNil();
1521
1525
  return $1;
1522
- }
1526
+ }, function($ctx1) {$ctx1.fill(self,"isWebkit",{}, smalltalk.HTMLCanvas.klass)})}
1523
1527
  }),
1524
1528
  smalltalk.HTMLCanvas.klass);
1525
1529
 
@@ -1529,14 +1533,14 @@ smalltalk.method({
1529
1533
  selector: "onJQuery:",
1530
1534
  fn: function (aJQuery){
1531
1535
  var self=this;
1532
- var $2,$3,$1;
1533
- $2=smalltalk.send(self,"_basicNew",[]);
1534
- smalltalk.send($2,"_initializeFromJQuery_",[aJQuery]);
1535
- smalltalk.send($2,"_initialize",[]);
1536
- $3=smalltalk.send($2,"_yourself",[]);
1536
+ return smalltalk.withContext(function($ctx1) {
1537
+ $2=_st(self)._basicNew();
1538
+ _st($2)._initializeFromJQuery_(aJQuery);
1539
+ _st($2)._initialize();
1540
+ $3=_st($2)._yourself();
1537
1541
  $1=$3;
1538
1542
  return $1;
1539
- }
1543
+ }, function($ctx1) {$ctx1.fill(self,"onJQuery:",{aJQuery:aJQuery}, smalltalk.HTMLCanvas.klass)})}
1540
1544
  }),
1541
1545
  smalltalk.HTMLCanvas.klass);
1542
1546
 
@@ -1548,8 +1552,8 @@ smalltalk.method({
1548
1552
  selector: "accesskey:",
1549
1553
  fn: function (aString){
1550
1554
  var self=this;
1551
- smalltalk.send(self,"_at_put_",["accesskey",aString]);
1552
- return self}
1555
+ return smalltalk.withContext(function($ctx1) {
1556
+ return self}, function($ctx1) {$ctx1.fill(self,"accesskey:",{aString:aString}, smalltalk.TagBrush)})}
1553
1557
  }),
1554
1558
  smalltalk.TagBrush);
1555
1559
 
@@ -1559,8 +1563,8 @@ smalltalk.method({
1559
1563
  selector: "action:",
1560
1564
  fn: function (aString){
1561
1565
  var self=this;
1562
- smalltalk.send(self,"_at_put_",["action",aString]);
1563
- return self}
1566
+ return smalltalk.withContext(function($ctx1) {
1567
+ return self}, function($ctx1) {$ctx1.fill(self,"action:",{aString:aString}, smalltalk.TagBrush)})}
1564
1568
  }),
1565
1569
  smalltalk.TagBrush);
1566
1570
 
@@ -1570,9 +1574,11 @@ smalltalk.method({
1570
1574
  selector: "addBrush:",
1571
1575
  fn: function (aTagBrush){
1572
1576
  var self=this;
1573
- smalltalk.send(self,"_appendChild_",[smalltalk.send(aTagBrush,"_element",[])]);
1574
- return aTagBrush;
1575
- }
1577
+ return smalltalk.withContext(function($ctx1) {
1578
+ _st(self)._appendChild_(_st(aTagBrush)._element());
1579
+ $1=aTagBrush;
1580
+ return $1;
1581
+ }, function($ctx1) {$ctx1.fill(self,"addBrush:",{aTagBrush:aTagBrush}, smalltalk.TagBrush)})}
1576
1582
  }),
1577
1583
  smalltalk.TagBrush);
1578
1584
 
@@ -1582,8 +1588,8 @@ smalltalk.method({
1582
1588
  selector: "align:",
1583
1589
  fn: function (aString){
1584
1590
  var self=this;
1585
- smalltalk.send(self,"_at_put_",["align",aString]);
1586
- return self}
1591
+ return smalltalk.withContext(function($ctx1) {
1592
+ return self}, function($ctx1) {$ctx1.fill(self,"align:",{aString:aString}, smalltalk.TagBrush)})}
1587
1593
  }),
1588
1594
  smalltalk.TagBrush);
1589
1595
 
@@ -1593,8 +1599,8 @@ smalltalk.method({
1593
1599
  selector: "alt:",
1594
1600
  fn: function (aString){
1595
1601
  var self=this;
1596
- smalltalk.send(self,"_at_put_",["alt",aString]);
1597
- return self}
1602
+ return smalltalk.withContext(function($ctx1) {
1603
+ return self}, function($ctx1) {$ctx1.fill(self,"alt:",{aString:aString}, smalltalk.TagBrush)})}
1598
1604
  }),
1599
1605
  smalltalk.TagBrush);
1600
1606
 
@@ -1604,8 +1610,8 @@ smalltalk.method({
1604
1610
  selector: "append:",
1605
1611
  fn: function (anObject){
1606
1612
  var self=this;
1607
- smalltalk.send(anObject,"_appendToBrush_",[self]);
1608
- return self}
1613
+ return smalltalk.withContext(function($ctx1) {
1614
+ return self}, function($ctx1) {$ctx1.fill(self,"append:",{anObject:anObject}, smalltalk.TagBrush)})}
1609
1615
  }),
1610
1616
  smalltalk.TagBrush);
1611
1617
 
@@ -1616,11 +1622,11 @@ selector: "appendBlock:",
1616
1622
  fn: function (aBlock){
1617
1623
  var self=this;
1618
1624
  var root;
1619
- root=smalltalk.send(self["@canvas"],"_root",[]);
1620
- smalltalk.send(self["@canvas"],"_root_",[self]);
1621
- smalltalk.send(aBlock,"_value_",[self["@canvas"]]);
1622
- smalltalk.send(self["@canvas"],"_root_",[root]);
1623
- return self}
1625
+ return smalltalk.withContext(function($ctx1) {
1626
+ _st(self["@canvas"])._root_(self);
1627
+ _st(aBlock)._value_(self["@canvas"]);
1628
+ _st(self["@canvas"])._root_(root);
1629
+ return self}, function($ctx1) {$ctx1.fill(self,"appendBlock:",{aBlock:aBlock,root:root}, smalltalk.TagBrush)})}
1624
1630
  }),
1625
1631
  smalltalk.TagBrush);
1626
1632
 
@@ -1630,14 +1636,13 @@ smalltalk.method({
1630
1636
  selector: "appendChild:",
1631
1637
  fn: function (anElement){
1632
1638
  var self=this;
1633
- var element=self['@element'];
1639
+ return smalltalk.withContext(function($ctx1) {
1634
1640
  if (null == element.canHaveChildren || element.canHaveChildren) {
1635
1641
  element.appendChild(anElement);
1636
1642
  } else {
1637
1643
  element.text = String(element.text) + anElement.innerHTML;
1638
1644
  } ;
1639
- ;
1640
- return self}
1645
+ return self}, function($ctx1) {$ctx1.fill(self,"appendChild:",{anElement:anElement}, smalltalk.TagBrush)})}
1641
1646
  }),
1642
1647
  smalltalk.TagBrush);
1643
1648
 
@@ -1647,8 +1652,8 @@ smalltalk.method({
1647
1652
  selector: "appendString:",
1648
1653
  fn: function (aString){
1649
1654
  var self=this;
1650
- smalltalk.send(self,"_appendChild_",[smalltalk.send(self,"_createTextNodeFor_",[aString])]);
1651
- return self}
1655
+ return smalltalk.withContext(function($ctx1) {
1656
+ return self}, function($ctx1) {$ctx1.fill(self,"appendString:",{aString:aString}, smalltalk.TagBrush)})}
1652
1657
  }),
1653
1658
  smalltalk.TagBrush);
1654
1659
 
@@ -1658,8 +1663,8 @@ smalltalk.method({
1658
1663
  selector: "appendToBrush:",
1659
1664
  fn: function (aTagBrush){
1660
1665
  var self=this;
1661
- smalltalk.send(aTagBrush,"_addBrush_",[self]);
1662
- return self}
1666
+ return smalltalk.withContext(function($ctx1) {
1667
+ return self}, function($ctx1) {$ctx1.fill(self,"appendToBrush:",{aTagBrush:aTagBrush}, smalltalk.TagBrush)})}
1663
1668
  }),
1664
1669
  smalltalk.TagBrush);
1665
1670
 
@@ -1669,10 +1674,10 @@ smalltalk.method({
1669
1674
  selector: "asJQuery",
1670
1675
  fn: function (){
1671
1676
  var self=this;
1672
- var $1;
1673
- $1=smalltalk.send(window,"_jQuery_",[smalltalk.send(self,"_element",[])]);
1677
+ return smalltalk.withContext(function($ctx1) {
1678
+ $1=_st(window)._jQuery_(_st(self)._element());
1674
1679
  return $1;
1675
- }
1680
+ }, function($ctx1) {$ctx1.fill(self,"asJQuery",{}, smalltalk.TagBrush)})}
1676
1681
  }),
1677
1682
  smalltalk.TagBrush);
1678
1683
 
@@ -1682,9 +1687,8 @@ smalltalk.method({
1682
1687
  selector: "at:put:",
1683
1688
  fn: function (aString,aValue){
1684
1689
  var self=this;
1685
- self['@element'].setAttribute(aString, aValue);
1686
- ;
1687
- return self}
1690
+ return smalltalk.withContext(function($ctx1) {
1691
+ return self}, function($ctx1) {$ctx1.fill(self,"at:put:",{aString:aString,aValue:aValue}, smalltalk.TagBrush)})}
1688
1692
  }),
1689
1693
  smalltalk.TagBrush);
1690
1694
 
@@ -1694,9 +1698,8 @@ smalltalk.method({
1694
1698
  selector: "class:",
1695
1699
  fn: function (aString){
1696
1700
  var self=this;
1697
- self['@element'].className = aString;
1698
- ;
1699
- return self}
1701
+ return smalltalk.withContext(function($ctx1) {
1702
+ return self}, function($ctx1) {$ctx1.fill(self,"class:",{aString:aString}, smalltalk.TagBrush)})}
1700
1703
  }),
1701
1704
  smalltalk.TagBrush);
1702
1705
 
@@ -1706,8 +1709,8 @@ smalltalk.method({
1706
1709
  selector: "cols:",
1707
1710
  fn: function (aString){
1708
1711
  var self=this;
1709
- smalltalk.send(self,"_at_put_",["cols",aString]);
1710
- return self}
1712
+ return smalltalk.withContext(function($ctx1) {
1713
+ return self}, function($ctx1) {$ctx1.fill(self,"cols:",{aString:aString}, smalltalk.TagBrush)})}
1711
1714
  }),
1712
1715
  smalltalk.TagBrush);
1713
1716
 
@@ -1717,8 +1720,8 @@ smalltalk.method({
1717
1720
  selector: "contenteditable:",
1718
1721
  fn: function (aString){
1719
1722
  var self=this;
1720
- smalltalk.send(self,"_at_put_",["contenteditable",aString]);
1721
- return self}
1723
+ return smalltalk.withContext(function($ctx1) {
1724
+ return self}, function($ctx1) {$ctx1.fill(self,"contenteditable:",{aString:aString}, smalltalk.TagBrush)})}
1722
1725
  }),
1723
1726
  smalltalk.TagBrush);
1724
1727
 
@@ -1728,10 +1731,11 @@ smalltalk.method({
1728
1731
  selector: "contents:",
1729
1732
  fn: function (anObject){
1730
1733
  var self=this;
1731
- var $1;
1732
- smalltalk.send(self,"_empty",[]);
1733
- $1=smalltalk.send(self,"_append_",[anObject]);
1734
- return self}
1734
+ return smalltalk.withContext(function($ctx1) {
1735
+ $1=self;
1736
+ _st($1)._empty();
1737
+ $2=_st($1)._append_(anObject);
1738
+ return self}, function($ctx1) {$ctx1.fill(self,"contents:",{anObject:anObject}, smalltalk.TagBrush)})}
1735
1739
  }),
1736
1740
  smalltalk.TagBrush);
1737
1741
 
@@ -1741,8 +1745,8 @@ smalltalk.method({
1741
1745
  selector: "contextmenu:",
1742
1746
  fn: function (aString){
1743
1747
  var self=this;
1744
- smalltalk.send(self,"_at_put_",["contextmenu",aString]);
1745
- return self}
1748
+ return smalltalk.withContext(function($ctx1) {
1749
+ return self}, function($ctx1) {$ctx1.fill(self,"contextmenu:",{aString:aString}, smalltalk.TagBrush)})}
1746
1750
  }),
1747
1751
  smalltalk.TagBrush);
1748
1752
 
@@ -1752,9 +1756,8 @@ smalltalk.method({
1752
1756
  selector: "createElementFor:",
1753
1757
  fn: function (aString){
1754
1758
  var self=this;
1755
- return document.createElement(String(aString));
1756
- ;
1757
- return self}
1759
+ return smalltalk.withContext(function($ctx1) {
1760
+ return self}, function($ctx1) {$ctx1.fill(self,"createElementFor:",{aString:aString}, smalltalk.TagBrush)})}
1758
1761
  }),
1759
1762
  smalltalk.TagBrush);
1760
1763
 
@@ -1764,9 +1767,8 @@ smalltalk.method({
1764
1767
  selector: "createTextNodeFor:",
1765
1768
  fn: function (aString){
1766
1769
  var self=this;
1767
- return document.createTextNode(String(aString));
1768
- ;
1769
- return self}
1770
+ return smalltalk.withContext(function($ctx1) {
1771
+ return self}, function($ctx1) {$ctx1.fill(self,"createTextNodeFor:",{aString:aString}, smalltalk.TagBrush)})}
1770
1772
  }),
1771
1773
  smalltalk.TagBrush);
1772
1774
 
@@ -1776,8 +1778,8 @@ smalltalk.method({
1776
1778
  selector: "draggable:",
1777
1779
  fn: function (aString){
1778
1780
  var self=this;
1779
- smalltalk.send(self,"_at_put_",["draggable",aString]);
1780
- return self}
1781
+ return smalltalk.withContext(function($ctx1) {
1782
+ return self}, function($ctx1) {$ctx1.fill(self,"draggable:",{aString:aString}, smalltalk.TagBrush)})}
1781
1783
  }),
1782
1784
  smalltalk.TagBrush);
1783
1785
 
@@ -1787,8 +1789,10 @@ smalltalk.method({
1787
1789
  selector: "element",
1788
1790
  fn: function (){
1789
1791
  var self=this;
1790
- return self["@element"];
1791
- }
1792
+ return smalltalk.withContext(function($ctx1) {
1793
+ $1=self["@element"];
1794
+ return $1;
1795
+ }, function($ctx1) {$ctx1.fill(self,"element",{}, smalltalk.TagBrush)})}
1792
1796
  }),
1793
1797
  smalltalk.TagBrush);
1794
1798
 
@@ -1798,8 +1802,8 @@ smalltalk.method({
1798
1802
  selector: "empty",
1799
1803
  fn: function (){
1800
1804
  var self=this;
1801
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_empty",[]);
1802
- return self}
1805
+ return smalltalk.withContext(function($ctx1) {
1806
+ return self}, function($ctx1) {$ctx1.fill(self,"empty",{}, smalltalk.TagBrush)})}
1803
1807
  }),
1804
1808
  smalltalk.TagBrush);
1805
1809
 
@@ -1809,8 +1813,8 @@ smalltalk.method({
1809
1813
  selector: "for:",
1810
1814
  fn: function (aString){
1811
1815
  var self=this;
1812
- smalltalk.send(self,"_at_put_",["for",aString]);
1813
- return self}
1816
+ return smalltalk.withContext(function($ctx1) {
1817
+ return self}, function($ctx1) {$ctx1.fill(self,"for:",{aString:aString}, smalltalk.TagBrush)})}
1814
1818
  }),
1815
1819
  smalltalk.TagBrush);
1816
1820
 
@@ -1820,8 +1824,8 @@ smalltalk.method({
1820
1824
  selector: "height:",
1821
1825
  fn: function (aString){
1822
1826
  var self=this;
1823
- smalltalk.send(self,"_at_put_",["height",aString]);
1824
- return self}
1827
+ return smalltalk.withContext(function($ctx1) {
1828
+ return self}, function($ctx1) {$ctx1.fill(self,"height:",{aString:aString}, smalltalk.TagBrush)})}
1825
1829
  }),
1826
1830
  smalltalk.TagBrush);
1827
1831
 
@@ -1831,8 +1835,8 @@ smalltalk.method({
1831
1835
  selector: "hidden",
1832
1836
  fn: function (){
1833
1837
  var self=this;
1834
- smalltalk.send(self,"_at_put_",["hidden","hidden"]);
1835
- return self}
1838
+ return smalltalk.withContext(function($ctx1) {
1839
+ return self}, function($ctx1) {$ctx1.fill(self,"hidden",{}, smalltalk.TagBrush)})}
1836
1840
  }),
1837
1841
  smalltalk.TagBrush);
1838
1842
 
@@ -1842,8 +1846,8 @@ smalltalk.method({
1842
1846
  selector: "href:",
1843
1847
  fn: function (aString){
1844
1848
  var self=this;
1845
- smalltalk.send(self,"_at_put_",["href",aString]);
1846
- return self}
1849
+ return smalltalk.withContext(function($ctx1) {
1850
+ return self}, function($ctx1) {$ctx1.fill(self,"href:",{aString:aString}, smalltalk.TagBrush)})}
1847
1851
  }),
1848
1852
  smalltalk.TagBrush);
1849
1853
 
@@ -1853,8 +1857,8 @@ smalltalk.method({
1853
1857
  selector: "id:",
1854
1858
  fn: function (aString){
1855
1859
  var self=this;
1856
- smalltalk.send(self,"_at_put_",["id",aString]);
1857
- return self}
1860
+ return smalltalk.withContext(function($ctx1) {
1861
+ return self}, function($ctx1) {$ctx1.fill(self,"id:",{aString:aString}, smalltalk.TagBrush)})}
1858
1862
  }),
1859
1863
  smalltalk.TagBrush);
1860
1864
 
@@ -1864,9 +1868,9 @@ smalltalk.method({
1864
1868
  selector: "initializeFromJQuery:canvas:",
1865
1869
  fn: function (aJQuery,aCanvas){
1866
1870
  var self=this;
1867
- self["@element"]=smalltalk.send(aJQuery,"_get_",[(0)]);
1871
+ return smalltalk.withContext(function($ctx1) {
1868
1872
  self["@canvas"]=aCanvas;
1869
- return self}
1873
+ return self}, function($ctx1) {$ctx1.fill(self,"initializeFromJQuery:canvas:",{aJQuery:aJQuery,aCanvas:aCanvas}, smalltalk.TagBrush)})}
1870
1874
  }),
1871
1875
  smalltalk.TagBrush);
1872
1876
 
@@ -1876,9 +1880,9 @@ smalltalk.method({
1876
1880
  selector: "initializeFromString:canvas:",
1877
1881
  fn: function (aString,aCanvas){
1878
1882
  var self=this;
1879
- self["@element"]=smalltalk.send(self,"_createElementFor_",[aString]);
1883
+ return smalltalk.withContext(function($ctx1) {
1880
1884
  self["@canvas"]=aCanvas;
1881
- return self}
1885
+ return self}, function($ctx1) {$ctx1.fill(self,"initializeFromString:canvas:",{aString:aString,aCanvas:aCanvas}, smalltalk.TagBrush)})}
1882
1886
  }),
1883
1887
  smalltalk.TagBrush);
1884
1888
 
@@ -1888,8 +1892,8 @@ smalltalk.method({
1888
1892
  selector: "media:",
1889
1893
  fn: function (aString){
1890
1894
  var self=this;
1891
- smalltalk.send(self,"_at_put_",["media",aString]);
1892
- return self}
1895
+ return smalltalk.withContext(function($ctx1) {
1896
+ return self}, function($ctx1) {$ctx1.fill(self,"media:",{aString:aString}, smalltalk.TagBrush)})}
1893
1897
  }),
1894
1898
  smalltalk.TagBrush);
1895
1899
 
@@ -1899,8 +1903,8 @@ smalltalk.method({
1899
1903
  selector: "method:",
1900
1904
  fn: function (aString){
1901
1905
  var self=this;
1902
- smalltalk.send(self,"_at_put_",["method",aString]);
1903
- return self}
1906
+ return smalltalk.withContext(function($ctx1) {
1907
+ return self}, function($ctx1) {$ctx1.fill(self,"method:",{aString:aString}, smalltalk.TagBrush)})}
1904
1908
  }),
1905
1909
  smalltalk.TagBrush);
1906
1910
 
@@ -1910,8 +1914,8 @@ smalltalk.method({
1910
1914
  selector: "name:",
1911
1915
  fn: function (aString){
1912
1916
  var self=this;
1913
- smalltalk.send(self,"_at_put_",["name",aString]);
1914
- return self}
1917
+ return smalltalk.withContext(function($ctx1) {
1918
+ return self}, function($ctx1) {$ctx1.fill(self,"name:",{aString:aString}, smalltalk.TagBrush)})}
1915
1919
  }),
1916
1920
  smalltalk.TagBrush);
1917
1921
 
@@ -1921,8 +1925,8 @@ smalltalk.method({
1921
1925
  selector: "onBlur:",
1922
1926
  fn: function (aBlock){
1923
1927
  var self=this;
1924
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["blur",aBlock]);
1925
- return self}
1928
+ return smalltalk.withContext(function($ctx1) {
1929
+ return self}, function($ctx1) {$ctx1.fill(self,"onBlur:",{aBlock:aBlock}, smalltalk.TagBrush)})}
1926
1930
  }),
1927
1931
  smalltalk.TagBrush);
1928
1932
 
@@ -1932,8 +1936,8 @@ smalltalk.method({
1932
1936
  selector: "onChange:",
1933
1937
  fn: function (aBlock){
1934
1938
  var self=this;
1935
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["change",aBlock]);
1936
- return self}
1939
+ return smalltalk.withContext(function($ctx1) {
1940
+ return self}, function($ctx1) {$ctx1.fill(self,"onChange:",{aBlock:aBlock}, smalltalk.TagBrush)})}
1937
1941
  }),
1938
1942
  smalltalk.TagBrush);
1939
1943
 
@@ -1943,8 +1947,8 @@ smalltalk.method({
1943
1947
  selector: "onClick:",
1944
1948
  fn: function (aBlock){
1945
1949
  var self=this;
1946
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["click",aBlock]);
1947
- return self}
1950
+ return smalltalk.withContext(function($ctx1) {
1951
+ return self}, function($ctx1) {$ctx1.fill(self,"onClick:",{aBlock:aBlock}, smalltalk.TagBrush)})}
1948
1952
  }),
1949
1953
  smalltalk.TagBrush);
1950
1954
 
@@ -1954,8 +1958,8 @@ smalltalk.method({
1954
1958
  selector: "onDblClick:",
1955
1959
  fn: function (aBlock){
1956
1960
  var self=this;
1957
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["dblclick",aBlock]);
1958
- return self}
1961
+ return smalltalk.withContext(function($ctx1) {
1962
+ return self}, function($ctx1) {$ctx1.fill(self,"onDblClick:",{aBlock:aBlock}, smalltalk.TagBrush)})}
1959
1963
  }),
1960
1964
  smalltalk.TagBrush);
1961
1965
 
@@ -1965,8 +1969,8 @@ smalltalk.method({
1965
1969
  selector: "onFocus:",
1966
1970
  fn: function (aBlock){
1967
1971
  var self=this;
1968
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["focus",aBlock]);
1969
- return self}
1972
+ return smalltalk.withContext(function($ctx1) {
1973
+ return self}, function($ctx1) {$ctx1.fill(self,"onFocus:",{aBlock:aBlock}, smalltalk.TagBrush)})}
1970
1974
  }),
1971
1975
  smalltalk.TagBrush);
1972
1976
 
@@ -1976,8 +1980,8 @@ smalltalk.method({
1976
1980
  selector: "onFocusIn:",
1977
1981
  fn: function (aBlock){
1978
1982
  var self=this;
1979
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["focusin",aBlock]);
1980
- return self}
1983
+ return smalltalk.withContext(function($ctx1) {
1984
+ return self}, function($ctx1) {$ctx1.fill(self,"onFocusIn:",{aBlock:aBlock}, smalltalk.TagBrush)})}
1981
1985
  }),
1982
1986
  smalltalk.TagBrush);
1983
1987
 
@@ -1987,8 +1991,8 @@ smalltalk.method({
1987
1991
  selector: "onFocusOut:",
1988
1992
  fn: function (aBlock){
1989
1993
  var self=this;
1990
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["focusout",aBlock]);
1991
- return self}
1994
+ return smalltalk.withContext(function($ctx1) {
1995
+ return self}, function($ctx1) {$ctx1.fill(self,"onFocusOut:",{aBlock:aBlock}, smalltalk.TagBrush)})}
1992
1996
  }),
1993
1997
  smalltalk.TagBrush);
1994
1998
 
@@ -1998,8 +2002,8 @@ smalltalk.method({
1998
2002
  selector: "onHover:",
1999
2003
  fn: function (aBlock){
2000
2004
  var self=this;
2001
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["hover",aBlock]);
2002
- return self}
2005
+ return smalltalk.withContext(function($ctx1) {
2006
+ return self}, function($ctx1) {$ctx1.fill(self,"onHover:",{aBlock:aBlock}, smalltalk.TagBrush)})}
2003
2007
  }),
2004
2008
  smalltalk.TagBrush);
2005
2009
 
@@ -2009,8 +2013,8 @@ smalltalk.method({
2009
2013
  selector: "onKeyDown:",
2010
2014
  fn: function (aBlock){
2011
2015
  var self=this;
2012
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["keydown",aBlock]);
2013
- return self}
2016
+ return smalltalk.withContext(function($ctx1) {
2017
+ return self}, function($ctx1) {$ctx1.fill(self,"onKeyDown:",{aBlock:aBlock}, smalltalk.TagBrush)})}
2014
2018
  }),
2015
2019
  smalltalk.TagBrush);
2016
2020
 
@@ -2020,8 +2024,8 @@ smalltalk.method({
2020
2024
  selector: "onKeyPress:",
2021
2025
  fn: function (aBlock){
2022
2026
  var self=this;
2023
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["keypress",aBlock]);
2024
- return self}
2027
+ return smalltalk.withContext(function($ctx1) {
2028
+ return self}, function($ctx1) {$ctx1.fill(self,"onKeyPress:",{aBlock:aBlock}, smalltalk.TagBrush)})}
2025
2029
  }),
2026
2030
  smalltalk.TagBrush);
2027
2031
 
@@ -2031,8 +2035,8 @@ smalltalk.method({
2031
2035
  selector: "onKeyUp:",
2032
2036
  fn: function (aBlock){
2033
2037
  var self=this;
2034
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["keyup",aBlock]);
2035
- return self}
2038
+ return smalltalk.withContext(function($ctx1) {
2039
+ return self}, function($ctx1) {$ctx1.fill(self,"onKeyUp:",{aBlock:aBlock}, smalltalk.TagBrush)})}
2036
2040
  }),
2037
2041
  smalltalk.TagBrush);
2038
2042
 
@@ -2042,8 +2046,8 @@ smalltalk.method({
2042
2046
  selector: "onMouseDown:",
2043
2047
  fn: function (aBlock){
2044
2048
  var self=this;
2045
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["mousedown",aBlock]);
2046
- return self}
2049
+ return smalltalk.withContext(function($ctx1) {
2050
+ return self}, function($ctx1) {$ctx1.fill(self,"onMouseDown:",{aBlock:aBlock}, smalltalk.TagBrush)})}
2047
2051
  }),
2048
2052
  smalltalk.TagBrush);
2049
2053
 
@@ -2053,8 +2057,8 @@ smalltalk.method({
2053
2057
  selector: "onMouseEnter:",
2054
2058
  fn: function (aBlock){
2055
2059
  var self=this;
2056
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["mouseenter",aBlock]);
2057
- return self}
2060
+ return smalltalk.withContext(function($ctx1) {
2061
+ return self}, function($ctx1) {$ctx1.fill(self,"onMouseEnter:",{aBlock:aBlock}, smalltalk.TagBrush)})}
2058
2062
  }),
2059
2063
  smalltalk.TagBrush);
2060
2064
 
@@ -2064,8 +2068,8 @@ smalltalk.method({
2064
2068
  selector: "onMouseLeave:",
2065
2069
  fn: function (aBlock){
2066
2070
  var self=this;
2067
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["mouseleave",aBlock]);
2068
- return self}
2071
+ return smalltalk.withContext(function($ctx1) {
2072
+ return self}, function($ctx1) {$ctx1.fill(self,"onMouseLeave:",{aBlock:aBlock}, smalltalk.TagBrush)})}
2069
2073
  }),
2070
2074
  smalltalk.TagBrush);
2071
2075
 
@@ -2075,8 +2079,8 @@ smalltalk.method({
2075
2079
  selector: "onMouseMove:",
2076
2080
  fn: function (aBlock){
2077
2081
  var self=this;
2078
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["mousemove",aBlock]);
2079
- return self}
2082
+ return smalltalk.withContext(function($ctx1) {
2083
+ return self}, function($ctx1) {$ctx1.fill(self,"onMouseMove:",{aBlock:aBlock}, smalltalk.TagBrush)})}
2080
2084
  }),
2081
2085
  smalltalk.TagBrush);
2082
2086
 
@@ -2086,8 +2090,8 @@ smalltalk.method({
2086
2090
  selector: "onMouseOut:",
2087
2091
  fn: function (aBlock){
2088
2092
  var self=this;
2089
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["mouseout",aBlock]);
2090
- return self}
2093
+ return smalltalk.withContext(function($ctx1) {
2094
+ return self}, function($ctx1) {$ctx1.fill(self,"onMouseOut:",{aBlock:aBlock}, smalltalk.TagBrush)})}
2091
2095
  }),
2092
2096
  smalltalk.TagBrush);
2093
2097
 
@@ -2097,8 +2101,8 @@ smalltalk.method({
2097
2101
  selector: "onMouseOver:",
2098
2102
  fn: function (aBlock){
2099
2103
  var self=this;
2100
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["mouseover",aBlock]);
2101
- return self}
2104
+ return smalltalk.withContext(function($ctx1) {
2105
+ return self}, function($ctx1) {$ctx1.fill(self,"onMouseOver:",{aBlock:aBlock}, smalltalk.TagBrush)})}
2102
2106
  }),
2103
2107
  smalltalk.TagBrush);
2104
2108
 
@@ -2108,8 +2112,8 @@ smalltalk.method({
2108
2112
  selector: "onMouseUp:",
2109
2113
  fn: function (aBlock){
2110
2114
  var self=this;
2111
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["mouseup",aBlock]);
2112
- return self}
2115
+ return smalltalk.withContext(function($ctx1) {
2116
+ return self}, function($ctx1) {$ctx1.fill(self,"onMouseUp:",{aBlock:aBlock}, smalltalk.TagBrush)})}
2113
2117
  }),
2114
2118
  smalltalk.TagBrush);
2115
2119
 
@@ -2119,8 +2123,8 @@ smalltalk.method({
2119
2123
  selector: "onSelect:",
2120
2124
  fn: function (aBlock){
2121
2125
  var self=this;
2122
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["select",aBlock]);
2123
- return self}
2126
+ return smalltalk.withContext(function($ctx1) {
2127
+ return self}, function($ctx1) {$ctx1.fill(self,"onSelect:",{aBlock:aBlock}, smalltalk.TagBrush)})}
2124
2128
  }),
2125
2129
  smalltalk.TagBrush);
2126
2130
 
@@ -2130,8 +2134,8 @@ smalltalk.method({
2130
2134
  selector: "onSubmit:",
2131
2135
  fn: function (aBlock){
2132
2136
  var self=this;
2133
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["submit",aBlock]);
2134
- return self}
2137
+ return smalltalk.withContext(function($ctx1) {
2138
+ return self}, function($ctx1) {$ctx1.fill(self,"onSubmit:",{aBlock:aBlock}, smalltalk.TagBrush)})}
2135
2139
  }),
2136
2140
  smalltalk.TagBrush);
2137
2141
 
@@ -2141,8 +2145,8 @@ smalltalk.method({
2141
2145
  selector: "onUnload:",
2142
2146
  fn: function (aBlock){
2143
2147
  var self=this;
2144
- smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_bind_do_",["unload",aBlock]);
2145
- return self}
2148
+ return smalltalk.withContext(function($ctx1) {
2149
+ return self}, function($ctx1) {$ctx1.fill(self,"onUnload:",{aBlock:aBlock}, smalltalk.TagBrush)})}
2146
2150
  }),
2147
2151
  smalltalk.TagBrush);
2148
2152
 
@@ -2152,8 +2156,8 @@ smalltalk.method({
2152
2156
  selector: "placeholder:",
2153
2157
  fn: function (aString){
2154
2158
  var self=this;
2155
- smalltalk.send(self,"_at_put_",["placeholder",aString]);
2156
- return self}
2159
+ return smalltalk.withContext(function($ctx1) {
2160
+ return self}, function($ctx1) {$ctx1.fill(self,"placeholder:",{aString:aString}, smalltalk.TagBrush)})}
2157
2161
  }),
2158
2162
  smalltalk.TagBrush);
2159
2163
 
@@ -2163,8 +2167,8 @@ smalltalk.method({
2163
2167
  selector: "rel:",
2164
2168
  fn: function (aString){
2165
2169
  var self=this;
2166
- smalltalk.send(self,"_at_put_",["rel",aString]);
2167
- return self}
2170
+ return smalltalk.withContext(function($ctx1) {
2171
+ return self}, function($ctx1) {$ctx1.fill(self,"rel:",{aString:aString}, smalltalk.TagBrush)})}
2168
2172
  }),
2169
2173
  smalltalk.TagBrush);
2170
2174
 
@@ -2174,9 +2178,8 @@ smalltalk.method({
2174
2178
  selector: "removeAt:",
2175
2179
  fn: function (aString){
2176
2180
  var self=this;
2177
- self['@element'].removeAttribute(aString);
2178
- ;
2179
- return self}
2181
+ return smalltalk.withContext(function($ctx1) {
2182
+ return self}, function($ctx1) {$ctx1.fill(self,"removeAt:",{aString:aString}, smalltalk.TagBrush)})}
2180
2183
  }),
2181
2184
  smalltalk.TagBrush);
2182
2185
 
@@ -2186,8 +2189,8 @@ smalltalk.method({
2186
2189
  selector: "rows:",
2187
2190
  fn: function (aString){
2188
2191
  var self=this;
2189
- smalltalk.send(self,"_at_put_",["rows",aString]);
2190
- return self}
2192
+ return smalltalk.withContext(function($ctx1) {
2193
+ return self}, function($ctx1) {$ctx1.fill(self,"rows:",{aString:aString}, smalltalk.TagBrush)})}
2191
2194
  }),
2192
2195
  smalltalk.TagBrush);
2193
2196
 
@@ -2197,8 +2200,8 @@ smalltalk.method({
2197
2200
  selector: "src:",
2198
2201
  fn: function (aString){
2199
2202
  var self=this;
2200
- smalltalk.send(self,"_at_put_",["src",aString]);
2201
- return self}
2203
+ return smalltalk.withContext(function($ctx1) {
2204
+ return self}, function($ctx1) {$ctx1.fill(self,"src:",{aString:aString}, smalltalk.TagBrush)})}
2202
2205
  }),
2203
2206
  smalltalk.TagBrush);
2204
2207
 
@@ -2208,8 +2211,8 @@ smalltalk.method({
2208
2211
  selector: "style:",
2209
2212
  fn: function (aString){
2210
2213
  var self=this;
2211
- smalltalk.send(self,"_at_put_",["style",aString]);
2212
- return self}
2214
+ return smalltalk.withContext(function($ctx1) {
2215
+ return self}, function($ctx1) {$ctx1.fill(self,"style:",{aString:aString}, smalltalk.TagBrush)})}
2213
2216
  }),
2214
2217
  smalltalk.TagBrush);
2215
2218
 
@@ -2219,8 +2222,8 @@ smalltalk.method({
2219
2222
  selector: "tabindex:",
2220
2223
  fn: function (aNumber){
2221
2224
  var self=this;
2222
- smalltalk.send(self,"_at_put_",["tabindex",aNumber]);
2223
- return self}
2225
+ return smalltalk.withContext(function($ctx1) {
2226
+ return self}, function($ctx1) {$ctx1.fill(self,"tabindex:",{aNumber:aNumber}, smalltalk.TagBrush)})}
2224
2227
  }),
2225
2228
  smalltalk.TagBrush);
2226
2229
 
@@ -2230,8 +2233,8 @@ smalltalk.method({
2230
2233
  selector: "target:",
2231
2234
  fn: function (aString){
2232
2235
  var self=this;
2233
- smalltalk.send(self,"_at_put_",["target",aString]);
2234
- return self}
2236
+ return smalltalk.withContext(function($ctx1) {
2237
+ return self}, function($ctx1) {$ctx1.fill(self,"target:",{aString:aString}, smalltalk.TagBrush)})}
2235
2238
  }),
2236
2239
  smalltalk.TagBrush);
2237
2240
 
@@ -2241,8 +2244,8 @@ smalltalk.method({
2241
2244
  selector: "title:",
2242
2245
  fn: function (aString){
2243
2246
  var self=this;
2244
- smalltalk.send(self,"_at_put_",["title",aString]);
2245
- return self}
2247
+ return smalltalk.withContext(function($ctx1) {
2248
+ return self}, function($ctx1) {$ctx1.fill(self,"title:",{aString:aString}, smalltalk.TagBrush)})}
2246
2249
  }),
2247
2250
  smalltalk.TagBrush);
2248
2251
 
@@ -2252,8 +2255,8 @@ smalltalk.method({
2252
2255
  selector: "type:",
2253
2256
  fn: function (aString){
2254
2257
  var self=this;
2255
- smalltalk.send(self,"_at_put_",["type",aString]);
2256
- return self}
2258
+ return smalltalk.withContext(function($ctx1) {
2259
+ return self}, function($ctx1) {$ctx1.fill(self,"type:",{aString:aString}, smalltalk.TagBrush)})}
2257
2260
  }),
2258
2261
  smalltalk.TagBrush);
2259
2262
 
@@ -2263,8 +2266,8 @@ smalltalk.method({
2263
2266
  selector: "valign:",
2264
2267
  fn: function (aString){
2265
2268
  var self=this;
2266
- smalltalk.send(self,"_at_put_",["valign",aString]);
2267
- return self}
2269
+ return smalltalk.withContext(function($ctx1) {
2270
+ return self}, function($ctx1) {$ctx1.fill(self,"valign:",{aString:aString}, smalltalk.TagBrush)})}
2268
2271
  }),
2269
2272
  smalltalk.TagBrush);
2270
2273
 
@@ -2274,8 +2277,8 @@ smalltalk.method({
2274
2277
  selector: "value:",
2275
2278
  fn: function (aString){
2276
2279
  var self=this;
2277
- smalltalk.send(self,"_at_put_",["value",aString]);
2278
- return self}
2280
+ return smalltalk.withContext(function($ctx1) {
2281
+ return self}, function($ctx1) {$ctx1.fill(self,"value:",{aString:aString}, smalltalk.TagBrush)})}
2279
2282
  }),
2280
2283
  smalltalk.TagBrush);
2281
2284
 
@@ -2285,8 +2288,8 @@ smalltalk.method({
2285
2288
  selector: "width:",
2286
2289
  fn: function (aString){
2287
2290
  var self=this;
2288
- smalltalk.send(self,"_at_put_",["width",aString]);
2289
- return self}
2291
+ return smalltalk.withContext(function($ctx1) {
2292
+ return self}, function($ctx1) {$ctx1.fill(self,"width:",{aString:aString}, smalltalk.TagBrush)})}
2290
2293
  }),
2291
2294
  smalltalk.TagBrush);
2292
2295
 
@@ -2296,8 +2299,8 @@ smalltalk.method({
2296
2299
  selector: "with:",
2297
2300
  fn: function (anObject){
2298
2301
  var self=this;
2299
- smalltalk.send(self,"_append_",[anObject]);
2300
- return self}
2302
+ return smalltalk.withContext(function($ctx1) {
2303
+ return self}, function($ctx1) {$ctx1.fill(self,"with:",{anObject:anObject}, smalltalk.TagBrush)})}
2301
2304
  }),
2302
2305
  smalltalk.TagBrush);
2303
2306
 
@@ -2308,13 +2311,13 @@ smalltalk.method({
2308
2311
  selector: "fromJQuery:canvas:",
2309
2312
  fn: function (aJQuery,aCanvas){
2310
2313
  var self=this;
2311
- var $2,$3,$1;
2312
- $2=smalltalk.send(self,"_new",[]);
2313
- smalltalk.send($2,"_initializeFromJQuery_canvas_",[aJQuery,aCanvas]);
2314
- $3=smalltalk.send($2,"_yourself",[]);
2314
+ return smalltalk.withContext(function($ctx1) {
2315
+ $2=_st(self)._new();
2316
+ _st($2)._initializeFromJQuery_canvas_(aJQuery,aCanvas);
2317
+ $3=_st($2)._yourself();
2315
2318
  $1=$3;
2316
2319
  return $1;
2317
- }
2320
+ }, function($ctx1) {$ctx1.fill(self,"fromJQuery:canvas:",{aJQuery:aJQuery,aCanvas:aCanvas}, smalltalk.TagBrush.klass)})}
2318
2321
  }),
2319
2322
  smalltalk.TagBrush.klass);
2320
2323
 
@@ -2324,13 +2327,13 @@ smalltalk.method({
2324
2327
  selector: "fromString:canvas:",
2325
2328
  fn: function (aString,aCanvas){
2326
2329
  var self=this;
2327
- var $2,$3,$1;
2328
- $2=smalltalk.send(self,"_new",[]);
2329
- smalltalk.send($2,"_initializeFromString_canvas_",[aString,aCanvas]);
2330
- $3=smalltalk.send($2,"_yourself",[]);
2330
+ return smalltalk.withContext(function($ctx1) {
2331
+ $2=_st(self)._new();
2332
+ _st($2)._initializeFromString_canvas_(aString,aCanvas);
2333
+ $3=_st($2)._yourself();
2331
2334
  $1=$3;
2332
2335
  return $1;
2333
- }
2336
+ }, function($ctx1) {$ctx1.fill(self,"fromString:canvas:",{aString:aString,aCanvas:aCanvas}, smalltalk.TagBrush.klass)})}
2334
2337
  }),
2335
2338
  smalltalk.TagBrush.klass);
2336
2339
 
@@ -2342,14 +2345,14 @@ smalltalk.method({
2342
2345
  selector: "with:",
2343
2346
  fn: function (aString){
2344
2347
  var self=this;
2345
- var $1;
2346
- $1=smalltalk.send((smalltalk.HTMLCanvas || HTMLCanvas),"_isMSIE",[]);
2348
+ return smalltalk.withContext(function($ctx1) {
2349
+ $1=_st((smalltalk.HTMLCanvas || HTMLCanvas))._isMSIE();
2347
2350
  if(smalltalk.assert($1)){
2348
- smalltalk.send(smalltalk.send(smalltalk.send(self,"_element",[]),"_styleSheet",[]),"_cssText_",[aString]);
2351
+ _st(_st(_st(self)._element())._styleSheet())._cssText_(aString);
2349
2352
  } else {
2350
- smalltalk.send(self,"_with_",[aString],smalltalk.TagBrush);
2353
+ smalltalk.TagBrush.fn.prototype._with_.apply(_st(self), [aString]);
2351
2354
  };
2352
- return self}
2355
+ return self}, function($ctx1) {$ctx1.fill(self,"with:",{aString:aString}, smalltalk.StyleTag)})}
2353
2356
  }),
2354
2357
  smalltalk.StyleTag);
2355
2358
 
@@ -2360,13 +2363,13 @@ smalltalk.method({
2360
2363
  selector: "canvas:",
2361
2364
  fn: function (aCanvas){
2362
2365
  var self=this;
2363
- var $2,$3,$1;
2364
- $2=smalltalk.send(self,"_new",[]);
2365
- smalltalk.send($2,"_initializeFromString_canvas_",["style",aCanvas]);
2366
- $3=smalltalk.send($2,"_yourself",[]);
2366
+ return smalltalk.withContext(function($ctx1) {
2367
+ $2=_st(self)._new();
2368
+ _st($2)._initializeFromString_canvas_("style",aCanvas);
2369
+ $3=_st($2)._yourself();
2367
2370
  $1=$3;
2368
2371
  return $1;
2369
- }
2372
+ }, function($ctx1) {$ctx1.fill(self,"canvas:",{aCanvas:aCanvas}, smalltalk.StyleTag.klass)})}
2370
2373
  }),
2371
2374
  smalltalk.StyleTag.klass);
2372
2375
 
@@ -2378,8 +2381,8 @@ smalltalk.method({
2378
2381
  selector: "appendToBrush:",
2379
2382
  fn: function (aTagBrush){
2380
2383
  var self=this;
2381
- smalltalk.send(self,"_appendToJQuery_",[smalltalk.send(aTagBrush,"_asJQuery",[])]);
2382
- return self}
2384
+ return smalltalk.withContext(function($ctx1) {
2385
+ return self}, function($ctx1) {$ctx1.fill(self,"appendToBrush:",{aTagBrush:aTagBrush}, smalltalk.Widget)})}
2383
2386
  }),
2384
2387
  smalltalk.Widget);
2385
2388
 
@@ -2389,8 +2392,8 @@ smalltalk.method({
2389
2392
  selector: "appendToJQuery:",
2390
2393
  fn: function (aJQuery){
2391
2394
  var self=this;
2392
- smalltalk.send(self,"_renderOn_",[smalltalk.send((smalltalk.HTMLCanvas || HTMLCanvas),"_onJQuery_",[aJQuery])]);
2393
- return self}
2395
+ return smalltalk.withContext(function($ctx1) {
2396
+ return self}, function($ctx1) {$ctx1.fill(self,"appendToJQuery:",{aJQuery:aJQuery}, smalltalk.Widget)})}
2394
2397
  }),
2395
2398
  smalltalk.Widget);
2396
2399
 
@@ -2400,7 +2403,7 @@ smalltalk.method({
2400
2403
  selector: "renderOn:",
2401
2404
  fn: function (html){
2402
2405
  var self=this;
2403
- return self}
2406
+ return smalltalk.withContext(function($ctx1) {
2404
2407
  }),
2405
2408
  smalltalk.Widget);
2406
2409
 
@@ -2412,8 +2415,8 @@ smalltalk.method({
2412
2415
  selector: "appendToBrush:",
2413
2416
  fn: function (aTagBrush){
2414
2417
  var self=this;
2415
- smalltalk.send(aTagBrush,"_append_",[smalltalk.send(self,"_asString",[])]);
2416
- return self}
2418
+ return smalltalk.withContext(function($ctx1) {
2419
+ return self}, function($ctx1) {$ctx1.fill(self,"appendToBrush:",{aTagBrush:aTagBrush}, smalltalk.Object)})}
2417
2420
  }),
2418
2421
  smalltalk.Object);
2419
2422
 
@@ -2423,8 +2426,8 @@ smalltalk.method({
2423
2426
  selector: "appendToJQuery:",
2424
2427
  fn: function (aJQuery){
2425
2428
  var self=this;
2426
- smalltalk.send(aJQuery,"_append_",[smalltalk.send(self,"_asString",[])]);
2427
- return self}
2429
+ return smalltalk.withContext(function($ctx1) {
2430
+ return self}, function($ctx1) {$ctx1.fill(self,"appendToJQuery:",{aJQuery:aJQuery}, smalltalk.Object)})}
2428
2431
  }),
2429
2432
  smalltalk.Object);
2430
2433
 
@@ -2434,8 +2437,8 @@ smalltalk.method({
2434
2437
  selector: "appendToBrush:",
2435
2438
  fn: function (aTagBrush){
2436
2439
  var self=this;
2437
- smalltalk.send(aTagBrush,"_appendBlock_",[self]);
2438
- return self}
2440
+ return smalltalk.withContext(function($ctx1) {
2441
+ return self}, function($ctx1) {$ctx1.fill(self,"appendToBrush:",{aTagBrush:aTagBrush}, smalltalk.BlockClosure)})}
2439
2442
  }),
2440
2443
  smalltalk.BlockClosure);
2441
2444
 
@@ -2445,8 +2448,8 @@ smalltalk.method({
2445
2448
  selector: "appendToJQuery:",
2446
2449
  fn: function (aJQuery){
2447
2450
  var self=this;
2448
- smalltalk.send(self,"_value_",[smalltalk.send((smalltalk.HTMLCanvas || HTMLCanvas),"_onJQuery_",[aJQuery])]);
2449
- return self}
2451
+ return smalltalk.withContext(function($ctx1) {
2452
+ return self}, function($ctx1) {$ctx1.fill(self,"appendToJQuery:",{aJQuery:aJQuery}, smalltalk.BlockClosure)})}
2450
2453
  }),
2451
2454
  smalltalk.BlockClosure);
2452
2455
 
@@ -2456,8 +2459,8 @@ smalltalk.method({
2456
2459
  selector: "appendToBrush:",
2457
2460
  fn: function (aTagBrush){
2458
2461
  var self=this;
2459
- smalltalk.send(aTagBrush,"_appendString_",[self]);
2460
- return self}
2462
+ return smalltalk.withContext(function($ctx1) {
2463
+ return self}, function($ctx1) {$ctx1.fill(self,"appendToBrush:",{aTagBrush:aTagBrush}, smalltalk.String)})}
2461
2464
  }),
2462
2465
  smalltalk.String);
2463
2466
 
@@ -2467,8 +2470,8 @@ smalltalk.method({
2467
2470
  selector: "appendToJQuery:",
2468
2471
  fn: function (aJQuery){
2469
2472
  var self=this;
2470
- smalltalk.send(aJQuery,"_append_",[self]);
2471
- return self}
2473
+ return smalltalk.withContext(function($ctx1) {
2474
+ return self}, function($ctx1) {$ctx1.fill(self,"appendToJQuery:",{aJQuery:aJQuery}, smalltalk.String)})}
2472
2475
  }),
2473
2476
  smalltalk.String);
2474
2477
 
@@ -2478,9 +2481,19 @@ smalltalk.method({
2478
2481
  selector: "asJQuery",
2479
2482
  fn: function (){
2480
2483
  var self=this;
2481
- return jQuery(String(self));
2482
- ;
2483
- return self}
2484
+ return smalltalk.withContext(function($ctx1) {
2485
+ return self}, function($ctx1) {$ctx1.fill(self,"asJQuery",{}, smalltalk.String)})}
2484
2486
  }),
2485
2487
  smalltalk.String);
2486
2488
 
2489
+ smalltalk.addMethod(
2490
+ "_asJQuery",
2491
+ smalltalk.method({
2492
+ selector: "asJQuery",
2493
+ fn: function (){
2494
+ var self=this;
2495
+ return smalltalk.withContext(function($ctx1) {
2496
+ return self}, function($ctx1) {$ctx1.fill(self,"asJQuery",{}, smalltalk.JSObjectProxy)})}
2497
+ }),
2498
+ smalltalk.JSObjectProxy);
2499
+