-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtodo.txt
77 lines (58 loc) · 2.46 KB
/
todo.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
Please refer to our issue tracker at
http://jira.codehaus.org/secure/BrowseProject.jspa?id=10671
for open issues.
Those with patches are also listed here:
http://boo.codehaus.org/Open+Issues+With+Patches
Named parameters:
def logHistoryFile(to: [required] fname, since: startDate as date):
print fname
logHistoryFile(to: "foo.txt", since: date.Now - 10s)
All the issues on this file will be eventually moved there.
* optimize InitializeNameResolution step and NameResolutionService
* NamespaceEntity.IsModule(Type)
* NamespaceEntity.Add(Type)
* NamespaceEntity.GetChildNamespace(string)
* OrganizeAssemblyTypes(Assembly)
* split RuntimeServices
* InjectCasts
* simplificar EmitAssembly
* ProcessMethodBodies.LeaveConstructor deve inserir a chamado ao constructor
super APÓS qualquer validação:
* criar um StatementGroup com uma propriedade Priority
* Body.InsertIntoGroup(groupPriority, index, Statement)
* Body.AddToGroup(groupPriority, Statement)
* sentenças normais são consideradas com prioridade 10
* validação de parâmetros pode ser inserida com prioridade 0
* chamada ao constructor super com prioriedade 1
* cache da resolução de nomes entre compilações
* nomes de tipo primitivo podem ser utilizados em conversões:
int(Enum.Value), int("foo"), int(3.0)
* ITypeBinding.GetDefaultMember() as IBinding => ITypeBinding.GetDefaultMembers() as (IBinding)
* macros para o SharpDevelop em boo
* StatementGroup para permitir o agrupamento de statements com mesmo propósito
* binary literals: 0b001
* WARNING: property getter should return a value
* CompilerParameters.Properties (passed in the command line as -D:name=value just like nant)
* warning levels
* statically typed IEnumerator pattern
* patterns ((in|is|isa) (not)?) (value1, value2), em outras palavras:
BinaryExpression(
BinaryOperatorType.*,
ReferenceExpression,
TupleLiteralExpression)
devem ser transformados em:
((reference == value1) or (reference == value2))
((reference is value1) or (reference is value2))
etc
* operadores de conversão (operator bool, operator string, etc)
* PreAttribute:
[pre(n > 0)]
def fatorial(n as int):
return n*fatorial(n-1) if n > 1
return 1
Optimizations
-----------
* otimização para chamadas a array.Length
* tail call prefix para funçoes recursivas com a ScanDirectories do rgrep.boo
* const expression unfolding
* proper tail recursion (fatorial)