My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
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
module TestAll
{
imports
{
AllSamples = new AllSamples();

TestClosures = new TestClosures();
TestConstructor = new TestConstructor();
TestControlFlow = new TestControlFlow();
TestDuckTyping = new TestDuckTyping();
TestField = new TestField();
TestFileIO = new TestFileIO();
TestInheritance = new TestInheritance();
TestInterfaces = new TestInterfaces();
TestLists = new TestLists();
TestMap = new TestMap();
TestMetaProgramming = new TestMetaProgramming();
TestOutput = new TestOutput();
TestRandom = new TestRandom();
TestReduce = new TestReduce();
TestSelect = new TestSelect();
TestSort = new TestSort();
TestStatic = new TestStatic();
TestTables = new TestTables();
TestViewport = new TestViewport();
}
methods
{
Main()
{
// Run the tests
TestClosures.Main();
TestConstructor.Main();
TestControlFlow.Main();
TestDuckTyping.Main();
TestField.Main();
TestFileIO.Main();
TestInheritance.Main();
TestInterfaces.Main();
TestLists.Main();
TestMap.Main();
TestMetaProgramming.Main();
TestOutput.Main();
TestRandom.Main();
TestReduce.Main();
TestSelect.Main();
TestSort.Main();
TestStatic.Main();
TestTables.Main();
TestViewport.Main();

AllSamples.Main();
}
}
}

Change log

r222 by cdiggins on Apr 17, 2010   Diff
I now have a compile-time code generation
example. All tests work now. Changed all
tabs to "    ". Fixed some bugs with
marsahaling of Lists. Renamed HeronTests
to UnitTests. I'm probably going to make a
release from this.
Go to: 
Project members, sign in to write a code review

Older revisions

r220 by cdiggins on Apr 13, 2010   Diff
I fixed some problems with type
checking. This revealed a bunch of
bugs in the code that had to be fixed.
Now type-checking and type-casting
(coercion) works well. CodeModel types
...
r200 by cdiggins on Mar 21, 2010   Diff
Very minor changes. Slowly moving
towards Alpha 3. For now, adding an
editor.
r198 by cdiggins on Mar 14, 2010   Diff
WideFinder is now working. Updated
lots of tests. Improved grammar a bit.
Fixed some bugs.
All revisions of this file

File info

Size: 1673 bytes, 55 lines
Powered by Google Project Hosting