public
Description: Boo language integration for Visual Studio 2008
Homepage: http://www.codeplex.com/BooLangStudio
Clone URL: git://github.com/olsonjeffery/boolangstudio.git
commit  4b17393954dce478f25c375669c4dc7dc03693b0
tree    d983f097b84f19039bb96a6cb4fcd04ca02321ca
parent  d836952552c9f979fbf0d6f1f6e63a012e24e37e
boolangstudio / TODO.txt
100644 20 lines (19 sloc) 1.054 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
!! What BooLangStudio Has:
* MsBuild integration in IDE (courtesy of the Boo team)
* Basic syntax highlighting (with caveats noted below)
* ClassLibrary and ConsoleApplication project types for boo
* Basic empty Class and Text file ProjectItems for Boo
* Auto-indentation when pressing enter after a ':' (colon) on the preceeding line
 
!! What BooLangStudio DOES NOT Have (but if you want to implement it, PLEASE DO):
* Any form of IntelliSense, specifically:
** member listing (when you press '.' after an instance identifier or Class identifier)
** "declaration scope", where any objects/keywords in scope are displayed while typing
*** valid, "in-scope" types coming after the 'as' keyword. ie: "foo as <types displayed here>"
*** valid keywords by scope, ie: def, class, if, etc depending on scope/context
*** valid, in-scope local/member variables
** tool tip support for types/method info
** parameter info when constructing a method call
* #region detection
* 'comment-region' functionality
* any refactoring functionality
* resolve functionality