Nathan Braswell
|
911b25f78b
|
Initial work for functions as values. Actually works, but you can't write out the type and thus can only declare function pointer variables with type inference.
|
2015-05-18 04:46:03 -04:00 |
|
Nathan Braswell
|
aafb52d108
|
A kinda ugly/hacky addition, but overloading () as operator() works now!
|
2015-05-16 00:09:50 -04:00 |
|
Nathan Braswell
|
795f8715ff
|
Break, continue, and DEFER statements! Woooo
|
2015-05-15 15:19:55 -04:00 |
|
Nathan Braswell
|
5dcb5ba02a
|
Turns out it works now, added more to the test and some comments explaining why
|
2015-05-15 13:03:45 -04:00 |
|
Nathan Braswell
|
a64624ba25
|
More complicated inference working, now just have to round out the edges
|
2015-05-15 12:29:44 -04:00 |
|
Nathan Braswell
|
f5e74ca7ce
|
Template function instantiation type inference work - super simple inference works (i.e. id<T>(i:T) { return i; }), and the framework is good, just have to flesh out unifyType to handle more than the trivial case
|
2015-05-14 00:25:18 -04:00 |
|
Nathan Braswell
|
44d310c092
|
Got simple type inference for declaration statements working with test
|
2015-05-10 02:18:59 -04:00 |
|
Nathan Braswell
|
87e1853713
|
Wooo! Fixed up remaining bugs in new syntax!
|
2015-05-09 06:24:56 -04:00 |
|
Nathan Braswell
|
c22cadeed7
|
The template part of the new syntax! Gotta go transform all of stdlib and the tests now and see if any other bugs pop up
|
2015-05-09 03:13:40 -04:00 |
|
Nathan Braswell
|
08431aa748
|
New syntax starting to work! Not templates yet, that's next
|
2015-04-14 16:08:36 -04:00 |
|
Nathan Braswell
|
e3aa531856
|
Wooo actual scoping and better C interop
|
2015-04-10 00:37:31 -04:00 |
|
Nathan Braswell
|
e37836aea5
|
Working toward new C inline style
|
2015-04-04 01:32:40 -04:00 |
|
Nathan Braswell
|
414113f954
|
Wooo passthrough and more cleanup! Remove 3rd pass!
|
2015-03-24 18:29:21 -04:00 |
|
Nathan Braswell
|
48dc1f8e4d
|
Fixed - and + as unary operators, negative numbers, etc
|
2015-03-24 15:47:08 -04:00 |
|
Nathan Braswell
|
af2a28ae4f
|
Fix chained indirect templates: template<T> |T| fun(|vector<T>| a) { return a.at(0); }, etc
|
2015-03-17 21:06:31 -04:00 |
|
Nathan Braswell
|
111e5a373e
|
!= didn't work either - missed it in the builtins at the top of ASTTransformation.cpp
|
2015-03-16 06:24:59 -04:00 |
|
Nathan Braswell
|
f1b0d46ca0
|
WOW. NodeTree deletes duplicate nodes. So x+x didn't work....
|
2015-03-14 16:53:00 -04:00 |
|
Nathan Braswell
|
e04cf03858
|
little less
|
2015-03-14 03:32:32 -04:00 |
|
Nathan Braswell
|
50cd9969b6
|
Ehh, not handleing syntax nodes is to common to make it an error right now
|
2015-03-14 02:50:18 -04:00 |
|
Nathan Braswell
|
7a865b82e9
|
Use std:cerr for errors
|
2015-03-14 02:42:07 -04:00 |
|
Nathan Braswell
|
6a311fb237
|
WOOO compiles all in one file! Dependencies resolved! Next up, C name mangeling for scoping
|
2015-03-11 01:58:10 -04:00 |
|
Nathan Braswell
|
ad0e90f74a
|
Fixed up vector and make template searching functions use std::set to remove false positives on multiple matching templates
|
2015-01-07 03:03:14 -05:00 |
|
Nathan Braswell
|
417e5ed898
|
Scope work progressing. Gotta fix bugs. Good save spot.
|
2014-12-19 18:29:33 -05:00 |
|
Nathan Braswell
|
4cf8dbbd5b
|
vector and vector test are finally working! Also found some bugs that I don't have time to fix before bed. Added file future_features.txt to keep track of bugs and features.
|
2014-07-28 01:52:15 -07:00 |
|
Nathan Braswell
|
87ad0c187e
|
Fixed quite a few bugs, including makeing find template functions check for trait subset, not trait equality, and add the number required to the satisfied count. Based on what is now breaking, it looks like it's time to give the builtin functions types.
|
2014-07-23 02:23:21 -07:00 |
|
Nathan Braswell
|
eae538907d
|
Fixed some mem things, found an odd parsing bug where a // comment before a function definition at top level does not parse. Deferring for now.
|
2014-07-20 20:42:26 -07:00 |
|
Nathan Braswell
|
93a170408f
|
Object traits working now as well. Only specilized templates don't, because I have not yet decided the syntax for them.
|
2014-07-20 14:21:41 -07:00 |
|
Nathan Braswell
|
64fcb6b0b7
|
Traits for function templates working! Need to finish for objects and specilizations, and I think also else statements.
|
2014-07-18 08:52:15 -07:00 |
|
Nathan Braswell
|
46b9fc8b7f
|
Added ability to add commits the Kraken grammer file. Started work on class traits and else statements.
|
2014-07-06 23:42:25 -07:00 |
|
Nathan Braswell
|
22fbd61360
|
Fixed a pretty bad error in isNullable logic, I must have been tired. Also, edited grammer to support a[n].b, which was previously done with wrong operator precedence so that that construction was illegal. vector.krak still doesn't quite parse, but that's because of some error with if (!name) which I will fix later. Bedtime.
|
2014-07-02 01:18:27 -07:00 |
|
Nathan Braswell
|
63d9ec66e1
|
Added "Init Position Call" (takes the place of implicit constructors) and the this keyword! This was the structure needed for more sensable memory management. At least delete will need some updating before it becomes very usable, though. (Figuring out the types for function template instantiation) Anyway, good progress here!
|
2014-06-26 01:45:44 -07:00 |
|
Nathan Braswell
|
82d8a15de0
|
Added (then fixed) templates with multiple parameters for both classes and functions!
|
2014-06-17 00:10:57 -07:00 |
|
Nathan Braswell
|
e7a631240f
|
Fixed the remaining problems\! All the tests pass now.
|
2014-06-10 23:59:39 -07:00 |
|
Nathan Braswell
|
7dbfd8ca38
|
Almost have it working, but member function lookup through a typedef doesn't quite work. (I think the problem's in CGenerator)
|
2014-06-10 00:53:30 -07:00 |
|
Nathan Braswell
|
366bbb6432
|
I didn't save the file. Now most (all) class template tests fail. Bedtime.
|
2014-06-09 00:40:12 -07:00 |
|
Nathan Braswell
|
812d40c6db
|
Work on fixing class templates instantiated outside of functions. Groundwork done, but it doesn't work. Doesn't break anything else either. Bedtime.
|
2014-06-09 00:21:38 -07:00 |
|
Nathan Braswell
|
ae9e652f1e
|
Mostly implemented Simultaneous Declaration, only template instantation during pass 2 remains to be implemented
|
2014-05-24 14:04:32 -04:00 |
|
Nathan Braswell
|
d37a07201a
|
Created a Poset template class. It can store the relationships of a partially ordered set, then generate a topological ordering. It will be used to order the type_def declarations in the CGenerator, as they depend on each other in a poset fashion.
|
2014-05-21 12:01:45 -04:00 |
|
Nathan Braswell
|
6350f93f24
|
Fixed the recursion bug. 8/10 tests pass now, remaining need to fix define order and CGenerator order
|
2014-05-21 01:20:39 -04:00 |
|
Nathan Braswell
|
17b80d4102
|
Fixed a typo that caused indirection operators to do the reverse on types. Also cleaned up some comments. One more test working.
|
2014-05-20 23:53:19 -04:00 |
|
Nathan Braswell
|
39f945940d
|
Fixed a ton of stuff with function templates. Works well now. Next up: multiple template types and fixing object definition ordering (both where templates should go and objects with other pointers)
|
2014-05-19 20:00:35 -04:00 |
|
Nathan Braswell
|
b2c61b00f2
|
Function templates working\!
|
2014-05-15 17:58:41 -04:00 |
|
Nathan Braswell
|
2a4edf9afd
|
Simple Templates work! Even Templates in other files work. Happy day
|
2014-05-10 19:28:36 -04:00 |
|
Nathan Braswell
|
5022fc0802
|
Significant work on templates. They should be close to working now (for single replacement). However, they do not show up in the global scope the the C generator can't see them. Plus, their names will have to be Cified.
|
2014-05-09 02:56:55 -04:00 |
|
Nathan Braswell
|
5de2ff58bb
|
Some template implementation/tests
|
2014-05-08 01:07:57 -04:00 |
|
Nathan Braswell
|
6c3267a8b2
|
Some groundwork for templates
|
2014-05-07 02:33:04 -04:00 |
|
Nathan Braswell
|
c4dea26cca
|
Finished simple array notation, fixed address of operator.
|
2014-05-06 13:54:53 -04:00 |
|
Nathan Braswell
|
209985310e
|
Fixed type propagation for dereference and address-of, needs work for all the other operators also. Starting ground work for array notation
|
2014-05-05 13:52:12 -04:00 |
|
Nathan Braswell
|
9a4507a0f5
|
Added passthroughs and small fix for malloc/free
|
2014-05-03 20:46:10 -04:00 |
|
Nathan Braswell
|
1997ba49d2
|
Fixed operator overloading so that both method and non-method operator overloads work.
|
2014-04-27 02:48:57 -04:00 |
|