In corlib/System.Runtime.InteropServices:
[mono.git] / mcs / gmcs / linq.cs
1 //
2 // linq.cs: support for query expressions
3 //
4 // Authors: Marek Safar (marek.safar@gmail.com)
5 //
6 // Licensed under the terms of the GNU GPL
7 //
8 // (C) 2007 Novell, Inc
9 //
10
11 using System;
12
13 namespace Mono.CSharp
14 {
15         public class QueryExpression : Expression
16         {
17                 public override Expression DoResolve (EmitContext ec)
18                 {
19                         throw new NotImplementedException ();
20                 }
21
22                 public override void Emit (EmitContext ec)
23                 {
24                         throw new NotImplementedException ();
25                 }
26         }
27 }
28