|
896b0deef7
|
Classes - Support using members from superclasses
* This includes methods, as per the book, but also getters and setters
|
2023-01-15 18:44:30 +01:00 |
|
|
9307fde4b3
|
Interpreter - Obtain and set a class' superclass
|
2023-01-15 18:18:56 +01:00 |
|
|
031efc33b1
|
Value - Replaced class check with class extractor
|
2023-01-15 18:18:32 +01:00 |
|
|
214cc6dc25
|
Classes - May now carry a reference to their superclass
|
2023-01-15 18:13:51 +01:00 |
|
|
3c062df202
|
Values - Method that checks that a value is a reference to a class
|
2023-01-15 18:08:55 +01:00 |
|
|
453d243b91
|
Resolver - Resolve superclasses
|
2023-01-15 17:59:37 +01:00 |
|
|
6b384cda5d
|
AST - Store superclass as a var expr
|
2023-01-15 17:57:29 +01:00 |
|
|
33c28db780
|
Parser - Read superclass name
|
2023-01-15 17:51:38 +01:00 |
|
|
164e7952bd
|
AST - Added superclass field
|
2023-01-15 17:47:52 +01:00 |
|
|
680c4b249d
|
Parser - Support for getters and setters
|
2023-01-14 17:01:17 +01:00 |
|
|
3d55901c51
|
Classes - Fixed static setters
|
2023-01-14 17:00:54 +01:00 |
|
|
77d47ef62f
|
Functions - Custom debug code to avoid dumping the environment
|
2023-01-14 16:57:09 +01:00 |
|
|
aa8394d619
|
Interpreter - Applied formatting
|
2023-01-14 16:08:28 +01:00 |
|
|
9627f588d2
|
Interpreter - Getter/setter execution
|
2023-01-14 16:07:59 +01:00 |
|
|
c372979009
|
Interpreter - Refactored method handling to prepare for getters/setters
|
2023-01-14 15:47:58 +01:00 |
|
|
1272b5ec89
|
Finished class member structure refactor
|
2023-01-14 14:03:21 +01:00 |
|
|
fb7f2f16fa
|
Interpreter - Fixed class declaration handling
|
2023-01-14 13:34:18 +01:00 |
|
|
71a58c12a2
|
Parser - Accomodate AST class structure changes
|
2023-01-14 13:20:50 +01:00 |
|
|
366ba6e307
|
Resolver - Refactored class member resolution again
|
2023-01-14 13:17:25 +01:00 |
|
|
141571569d
|
Dumper - Fixed imports
|
2023-01-14 11:15:52 +01:00 |
|
|
c3bdc23081
|
AST - Refactored class member data structures
|
2023-01-14 11:14:53 +01:00 |
|
|
f2637fb319
|
Dumper - Handle property getters/setters
|
2023-01-14 11:00:10 +01:00 |
|
|
ddb2c94ae5
|
AST - Added property getters/setters
|
2023-01-14 10:56:10 +01:00 |
|
|
373668fc23
|
AST - Comments for ClassDecl members
|
2023-01-14 10:50:30 +01:00 |
|
|
39276f4756
|
Resolver - Ensure method names are unique
|
2023-01-13 08:31:08 +01:00 |
|
|
77f14bfa8e
|
Interpreter - Static methods are returned by the getter
|
2023-01-13 08:21:18 +01:00 |
|
|
75652b95cf
|
Interpreter - Store static methods inside classes
|
2023-01-13 08:16:26 +01:00 |
|
|
ed704b1a63
|
Interpreter - Refactored method extraction
|
2023-01-12 08:54:23 +01:00 |
|
|
d2b66db852
|
Interpreter - Filter non-static methods during class creation
|
2023-01-12 08:47:16 +01:00 |
|
|
fb588e07a2
|
Parser - Fixed borrow error
|
2023-01-12 08:46:06 +01:00 |
|
|
4255fc30d5
|
Resolver - Removed unused import
|
2023-01-12 08:41:35 +01:00 |
|
|
599652e98e
|
Resolver - Refactored to work with the new class structure
|
2023-01-12 08:41:04 +01:00 |
|
|
0dbc631c96
|
Parser - Disallow static initializers
|
2023-01-12 08:40:21 +01:00 |
|
|
b77d69c989
|
Parser - Static methods
|
2023-01-12 08:15:36 +01:00 |
|
|
24c39a2c9d
|
Scanner - Static keyword
|
2023-01-12 08:15:26 +01:00 |
|
|
0a31442d56
|
Dumper - Support static methods
|
2023-01-12 08:09:23 +01:00 |
|
|
52c4b6315e
|
AST - Refactored class member representation
|
2023-01-12 08:06:58 +01:00 |
|
|
6387615f68
|
Tokens - Added Static
|
2023-01-12 08:02:01 +01:00 |
|
|
0ebe2e9f22
|
Interpreter - Class properties
|
2023-01-12 07:39:12 +01:00 |
|
|
09b4b4e688
|
Interpreter - Refactored getter/setter support as a trait on an instance ref
|
2023-01-11 19:44:52 +01:00 |
|
|
8b19f546c8
|
Parser - Removed handling of 'return' special cases
* This has been implemented in the resolver so it's pretty pointless
to do it twice
|
2023-01-11 15:33:41 +01:00 |
|
|
ee53c2fba4
|
Resolver - Improved handling of 'return'
|
2023-01-11 15:33:21 +01:00 |
|
|
57a5a62300
|
Resolver - Check return statements in the resolver
|
2023-01-11 15:30:24 +01:00 |
|
|
406400bf71
|
Resolver - Don't reset scope types while parsing function blocks
|
2023-01-11 15:29:48 +01:00 |
|
|
aa48973e23
|
Resolver - Support and detection of the initializer scope type
|
2023-01-11 15:19:21 +01:00 |
|
|
0a581f042d
|
Resolver - Keep track of the container scope's type
|
2023-01-11 15:15:40 +01:00 |
|
|
47c4136c25
|
Interpreter - Refactored instance to avoid runtime borrom problems
|
2023-01-11 08:21:48 +01:00 |
|
|
c4f0f0f721
|
Interpreter - Fixed special case for init
|
2023-01-11 08:03:42 +01:00 |
|
|
3af544a78e
|
Interpreter - Initialize support in instances
* Doesn't work at this point
|
2023-01-11 07:50:02 +01:00 |
|
|
783a2e3dd0
|
Interpreter - Special case for initializer methods
|
2023-01-11 07:46:13 +01:00 |
|