I am currently redesigning a compiler, adding object syntax and better
support for different backends (including .NET CLR).
While I am doing this, I'm reviewing VSIP extensibility. I have simple
projects and the core language services working -- basically everything in
the Babel language package and have a few questions:
Am I correct in assuming that the error tips service is re-parsing the
entire source as the user is typing?
I'd like to be able to support WinForms/WebForms projects for the language.
I haven't been able to find anything in VSIP for this. Is this supported?
Also, I realize that adding language support for ASP.NET and SQL Server
Yukon isn't a VSIP question, but where would I get more information adding
support for them?
This compiler and extensions are scheduled for release in the Whidbey time
frame.
Thanks,
David
Mikhail Arkhipov (Microsoft) - 06 Jul 2004 07:23 GMT
I believe support for ASP.NET is VSIP question :-)
My team owns large chunk of the ASP.NET editor (specifically Source view,
server code, client script and markup intellisense, validation and such), so
ask away :-)
I am talking about VS 2005. If your language supports partial classes, you
may support both code separation and code inline scenarios. If you do not
support partial classes, then you are limited to code inline scenario,
similar to what VJ# does in Whidbey.
Thanks
Mikhail Arkhipov (Microsoft)
http://weblogs.asp.net/mikhailarkhipov
-- This post is provided 'AS IS' with no warranties and confers no rights.
On 6/30/04 16:51, in article Ohv350vXEHA.2944@TK2MSFTNGP11.phx.gbl, "David
Barron" <dpbarron@newsgroups.nospam> wrote:
> I am currently redesigning a compiler, adding object syntax and better
> support for different backends (including .NET CLR).
[quoted text clipped - 19 lines]
>
> David