<html>
<head>
<style><!--
  body {background-color:#ffffff;}
  .file {border:1px solid #eeeeee;margin-top:1em;margin-bottom:1em;}
  .pathname {font-family:monospace; float:right;}
  .fileheader {margin-bottom:.5em;}
  .diff {margin:0;}
  .tasklist {padding:4px;border:1px dashed #000000;margin-top:1em;}
  .tasklist ul {margin-top:0;margin-bottom:0;}
  tr.alt {background-color:#eeeeee}
  #added {background-color:#ddffdd;}
  #addedchars {background-color:#99ff99;font-weight:bolder;}
  tr.alt #added {background-color:#ccf7cc;}
  #removed {background-color:#ffdddd;}
  #removedchars {background-color:#ff9999;font-weight:bolder;}
  tr.alt #removed {background-color:#f7cccc;}
  #copied {background-color:#ccccff;}
  tr.alt #copied {background-color:#bbbbf7;}
  #info {color:#888888;}
  #context {background-color:#eeeeee;}
  td {padding-left:.3em;padding-right:.3em;}
  tr.head {border-bottom-width:1px;border-bottom-style:solid;}
  tr.head td {padding:0;padding-top:.2em;}
  .task {background-color:#ffff00;}
  .comment {white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;white-space:pre-wrap;word-wrap:break-word;padding:4px;border:1px dashed #000000;background-color:#ffffdd}
  .error {color:red;}
  hr {border-width:0px;height:2px;background:black;}
--></style>
</head>
<body>
<table cellspacing="0" cellpadding="0" border="0" rules="cols">
<tr class="head"><td colspan="5">Commit in <b><tt>metaas/trunk/src</tt></b></td></tr>
<tr><td><tt>main/java/uk/co/badgersinfoil/metaas/impl/<a href="#file1">ASTInvocation.java</a></tt> </td><td></td><td align="right" id="added">+4</td><td></td><td nowrap="nowrap" align="center">642 -&gt; 643</td></tr>
<tr class="alt"><td><tt>test/java/uk/co/badgersinfoil/metaas/<a href="#file2">InvocationExpressionTests.java</a></tt> </td><td></td><td align="right" id="added">+5</td><td align="right" id="removed">-3</td><td nowrap="nowrap" align="center">642 -&gt; 643</td></tr>
<tr><td><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;/<a href="#file3">NewExpressionTests.java</a></tt> </td><td></td><td align="right" id="added">+3</td><td align="right" id="removed">-2</td><td nowrap="nowrap" align="center">642 -&gt; 643</td></tr>
<tr><td></td><td></td><td align="right" id="added">+12</td><td align="right" id="removed">-5</td><td></td></tr>
</table>
<small id="info">3 modified files</small><br />
<pre class="comment">
fix unit tests after API change
</pre>
<hr /><a name="file1" /><div class="file">
<span class="pathname">metaas/trunk/src/main/java/uk/co/badgersinfoil/metaas/impl</span><br />
<div class="fileheader"><big><b>ASTInvocation.java</b></big> <small id="info">642 -&gt; 643</small></div>
<pre class="diff"><small id="info">--- trunk/src/main/java/uk/co/badgersinfoil/metaas/impl/ASTInvocation.java        2008-01-28 08:11:15 UTC (rev 642)
+++ trunk/src/main/java/uk/co/badgersinfoil/metaas/impl/ASTInvocation.java        2008-01-28 08:15:44 UTC (rev 643)
@@ -31,4 +31,8 @@
</small></pre><pre class="diff" id="context">                 LinkedListTree exprAST = ((ASTASExpression)expr).getAST();
                 ast.setChildWithTokens(0, exprAST);
         }
</pre><pre class="diff" id="added">+
+        public LinkedListTree getAST() {
+                return ast;
+        }
</pre><pre class="diff" id="context"> }
</pre></div>
<hr /><a name="file2" /><div class="file">
<span class="pathname">metaas/trunk/src/test/java/uk/co/badgersinfoil/metaas</span><br />
<div class="fileheader"><big><b>InvocationExpressionTests.java</b></big> <small id="info">642 -&gt; 643</small></div>
<pre class="diff"><small id="info">--- trunk/src/test/java/uk/co/badgersinfoil/metaas/InvocationExpressionTests.java        2008-01-28 08:11:15 UTC (rev 642)
+++ trunk/src/test/java/uk/co/badgersinfoil/metaas/InvocationExpressionTests.java        2008-01-28 08:15:44 UTC (rev 643)
@@ -7,8 +7,10 @@
</small></pre><pre class="diff" id="context"> import uk.co.badgersinfoil.metaas.dom.ASIntegerLiteral;
 import uk.co.badgersinfoil.metaas.dom.ASInvocationExpression;
 import uk.co.badgersinfoil.metaas.dom.ASStringLiteral;
</pre><pre class="diff" id="added">+import uk.co.badgersinfoil.metaas.dom.Invocation;
</pre><pre class="diff" id="context"> import uk.co.badgersinfoil.metaas.impl.AS3FragmentParser;
 import uk.co.badgersinfoil.metaas.impl.ASTASExpression;
</pre><pre class="diff" id="added">+import uk.co.badgersinfoil.metaas.impl.ASTInvocation;
</pre><pre class="diff" id="context"> import uk.co.badgersinfoil.metaas.impl.ASTPrinter;
 import uk.co.badgersinfoil.metaas.impl.antlr.LinkedListTree;
 import junit.framework.TestCase;
</pre><pre class="diff"><small id="info">@@ -16,7 +18,7 @@
</small></pre><pre class="diff" id="context"> public class InvocationExpressionTests extends TestCase {
         protected ActionScriptFactory fact = new ActionScriptFactory();
         protected ASExpression sub;
</pre><pre class="diff" id="removed">-        protected ASInvocationExpression expr;
</pre><pre class="diff" id="added">+        protected Invocation expr;
</pre><pre class="diff" id="context">         protected List args;
 
         public void setUp() {
</pre><pre class="diff"><small id="info">@@ -27,14 +29,14 @@
</small></pre><pre class="diff" id="context">         public void tearDown() {
                 StringWriter buff = new StringWriter();
                 if (expr != null) {
</pre><pre class="diff" id="removed">-                        LinkedListTree ast = ((AST<span id="removedchars">ASExpress</span>ion)expr).getAST();
</pre><pre class="diff" id="added">+                        LinkedListTree ast = ((AST<span id="addedchars">Invocat</span>ion)expr).getAST();
</pre><pre class="diff" id="context">                         new ASTPrinter(buff).print(ast);
                         LinkedListTree parsed = AS3FragmentParser.parseExpr(buff.toString());
                         CodeMirror.assertASTMatch(ast, parsed);
                 }
         }
         
</pre><pre class="diff" id="removed">-        protected <span id="removedchars">ASInvocationExpress</span>ion newTestExpr(ASExpression sub, List args) {
</pre><pre class="diff" id="added">+        protected <span id="addedchars">Invocat</span>ion newTestExpr(ASExpression sub, List args) {
</pre><pre class="diff" id="context">                 return fact.newInvocationExpression(sub, args);
         }
 
</pre></div>
<hr /><a name="file3" /><div class="file">
<span class="pathname">metaas/trunk/src/test/java/uk/co/badgersinfoil/metaas</span><br />
<div class="fileheader"><big><b>NewExpressionTests.java</b></big> <small id="info">642 -&gt; 643</small></div>
<pre class="diff"><small id="info">--- trunk/src/test/java/uk/co/badgersinfoil/metaas/NewExpressionTests.java        2008-01-28 08:11:15 UTC (rev 642)
+++ trunk/src/test/java/uk/co/badgersinfoil/metaas/NewExpressionTests.java        2008-01-28 08:15:44 UTC (rev 643)
@@ -5,6 +5,7 @@
</small></pre><pre class="diff" id="context"> import uk.co.badgersinfoil.metaas.dom.ASExpression;
 import uk.co.badgersinfoil.metaas.dom.ASInvocationExpression;
 import uk.co.badgersinfoil.metaas.dom.ASNewExpression;
</pre><pre class="diff" id="added">+import uk.co.badgersinfoil.metaas.dom.Invocation;
</pre><pre class="diff" id="context"> 
 
 public class NewExpressionTests extends InvocationExpressionTests {
</pre><pre class="diff"><small id="info">@@ -14,7 +15,7 @@
</small></pre><pre class="diff" id="context">                 sub = fact.newExpression("com.example.MyClass");
         }
         
</pre><pre class="diff" id="removed">-        protected <span id="removedchars">ASInvocationExpress</span>ion newTestExpr(ASExpression sub, List args) {
</pre><pre class="diff" id="added">+        protected <span id="addedchars">Invocat</span>ion newTestExpr(ASExpression sub, List args) {
</pre><pre class="diff" id="context">                 return fact.newNewExpression(sub, args);
         }
         
</pre><pre class="diff"><small id="info">@@ -41,6 +42,6 @@
</small></pre><pre class="diff" id="context">         }
         
         public void testParse() {
</pre><pre class="diff" id="removed">-                expr = (<span id="removedchars">ASInvocationExpress</span>ion)fact.newExpression("new Foo()");
</pre><pre class="diff" id="added">+                expr = (<span id="addedchars">Invocat</span>ion)fact.newExpression("new Foo()");
</pre><pre class="diff" id="context">         }
 }
</pre><pre class="diff"><small id="info">\ No newline at end of file
</small></pre></div>
<center><small><a href="http://www.badgers-in-foil.co.uk/projects/cvsspam/" title="commit -&gt; email">CVSspam</a> 0.2.12</small></center>
</body></html>