2004-11-05 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Sat, 6 Nov 2004 12:55:59 +0000 (12:55 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Sat, 6 Nov 2004 12:55:59 +0000 (12:55 -0000)
* Compiler.cs : Changes that reflects CompiledExpression changes.

svn path=/trunk/mcs/; revision=35768

mcs/class/System.XML/Mono.Xml.Xsl/ChangeLog
mcs/class/System.XML/Mono.Xml.Xsl/Compiler.cs

index bb78351e9de6e1155c493ec582fcf65e3036a747..9cf08881987cb827e8b2e1e9c6eab9702f2dcc2b 100644 (file)
@@ -1,3 +1,7 @@
+2004-11-05  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Compiler.cs : Changes that reflects CompiledExpression changes.
+
 2004-10-04  Atsushi Enomoto  <atsushi@ximian.com>
 
        * HtmlEmitter.cs : TH tag is not regarded as HTML tag.
index 401b641474dd7c8cb8bf51398143dd4a38b3df75..b72d3ba4927fb43e4fd1ecf70cb71735b8b08c0f 100644 (file)
@@ -347,7 +347,7 @@ namespace Mono.Xml.Xsl
                        Expression expr = parser.Compile (expression);
                        if (isKey)
                                expr = new ExprKeyContainer (expr);
-                       CompiledExpression e = new CompiledExpression (expr);
+                       CompiledExpression e = new CompiledExpression (expression, expr);
 
                        exprStore.AddExpression (e, this);