[svn]
r7671: vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CompilerConcreteDefinitions/Intell...
VladD2
svnadmin at nemerle.org
Sat May 12 17:30:04 CEST 2007
Log:
Sync with compiler.
Author: VladD2
Date: Sat May 12 17:30:02 2007
New Revision: 7671
Modified:
vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CompilerConcreteDefinitions/IntelliSenseModeTyper.n
Modified: vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CompilerConcreteDefinitions/IntelliSenseModeTyper.n
==============================================================================
--- vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CompilerConcreteDefinitions/IntelliSenseModeTyper.n (original)
+++ vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CompilerConcreteDefinitions/IntelliSenseModeTyper.n Sat May 12 17:30:02 2007
@@ -7,7 +7,7 @@
using Nemerle.Compiler.Typedtree;
using System.Diagnostics;
-using Typed = Nemerle.Compiler.Typedtree;
+using TT = Nemerle.Compiler.Typedtree;
using SR = System.Reflection;
using SCG = System.Collections.Generic;
@@ -16,15 +16,9 @@
public class IntelliSenseModeTyper : Typer
{
public this (m : MethodBuilder) { base (m) }
- public this (parent : Typer, fn : Typedtree.Fun_header) { base (parent, fn) }
- public this (
- tb : TypeBuilder,
- tenv : TyVarEnv,
- fn : Typedtree.Fun_header,
- env : GlobalEnv)
- {
- base (tb, tenv, fn, env)
- }
+ public this (tb : TypeBuilder, tenv : TyVarEnv, mb : MethodBuilder, env : GlobalEnv)
+ { base(tb, tenv, mb, env) }
+ public this (parent : Typer, fn : TT.Fun_header) { base(parent, fn) }
protected override RunDelayedTypings () : void { base.RunDelayedTypings() }
More information about the svn
mailing list