Author: jbevain Date: 2008-01-09 06:44:43 -0500 (Wed, 09 Jan 2008) New Revision: 92495
Modified: trunk/mcs/class/System.Core/System.Linq.Expressions/Expression_T.cs Log: reformating Modified: trunk/mcs/class/System.Core/System.Linq.Expressions/Expression_T.cs =================================================================== --- trunk/mcs/class/System.Core/System.Linq.Expressions/Expression_T.cs 2008-01-09 11:43:29 UTC (rev 92494) +++ trunk/mcs/class/System.Core/System.Linq.Expressions/Expression_T.cs 2008-01-09 11:44:43 UTC (rev 92495) @@ -1,3 +1,13 @@ +// +// Expression_T.cs +// +// Authors: +// Marek Safar ([EMAIL PROTECTED]) +// Antonello Provenzano <[EMAIL PROTECTED]> +// Jb Evain ([EMAIL PROTECTED]) +// +// Copyright (C) 2008 Novell, Inc (http://www.novell.com) +// // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including @@ -5,41 +15,36 @@ // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: -// +// // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. -// +// // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -// Authors: -// Marek Safar ([EMAIL PROTECTED]) -// Antonello Provenzano <[EMAIL PROTECTED]> -// using System; using System.Collections.Generic; using System.Collections.ObjectModel; -namespace System.Linq.Expressions -{ - public sealed class Expression<TDelegate> : LambdaExpression - { - #region .ctor - internal Expression(Expression body, ReadOnlyCollection<ParameterExpression> parameters) - : base(body, typeof(TDelegate), parameters) - { - } - #endregion +namespace System.Linq.Expressions { + public sealed class Expression<TDelegate> : LambdaExpression { - public new TDelegate Compile() - { - throw new NotImplementedException(); - } - } -} \ No newline at end of file + internal Expression (Expression body, ReadOnlyCollection<ParameterExpression> parameters) + : base (body, typeof (TDelegate), parameters) + { + } + + [MonoTODO] + public new TDelegate Compile () + { + throw new NotImplementedException (); + } + } +} _______________________________________________ Mono-patches maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-patches
