|
4ae1d19012
|
readme: fix missing export for main
|
2023-09-23 15:55:42 -07:00 |
|
|
a292449b6a
|
ast: fix codegen of equals to not produce warnings
|
2023-09-23 15:53:54 -07:00 |
|
|
c340cfb86d
|
idea: significant enhancements to ide experience
|
2023-09-22 22:38:06 -07:00 |
|
|
83c24843a3
|
ffi: new native function format
|
2023-09-22 00:26:24 -07:00 |
|
|
f60715dfb3
|
idea: proper scoping support, completion now works
|
2023-09-21 23:07:22 -07:00 |
|
|
c92a111af7
|
idea: implement function call completion (limited)
|
2023-09-21 21:33:34 -07:00 |
|
|
d12aadf18c
|
idea: brace matching and function resolution
|
2023-09-21 21:08:20 -07:00 |
|
|
c4f65a66ca
|
parser: ensure that the parse functions are always directly called by reworking whitespace
|
2023-09-21 18:04:19 -07:00 |
|
|
4758e92676
|
evaluator: significant performance enhancements
|
2023-09-21 17:21:53 -07:00 |
|
|
1a759b9746
|
gradle: improve performance of ast codegen
|
2023-09-20 18:58:05 -07:00 |
|
|
21ff33f776
|
gradle: make ast generation faster using kaml and coroutines
|
2023-09-20 15:13:33 -07:00 |
|
|
ad5fc9bf0f
|
gradle: make build faster
|
2023-09-20 14:43:27 -07:00 |
|
|
dacec08587
|
ffi: rework for future struct support
|
2023-09-18 04:53:24 -07:00 |
|
|
7cb3e02b21
|
parser: major refinement of error handling
|
2023-09-18 01:07:28 -07:00 |
|
|
5610326eda
|
examples: simple game of life impl using SDL2 thru ffi & native java collections
|
2023-09-17 08:45:33 -07:00 |
|
|
a08526c92c
|
language: implement list indexing
|
2023-09-17 08:38:11 -07:00 |
|
|
3b101bd48a
|
global: idea generation support
|
2023-09-17 00:38:47 -07:00 |
|
|
821aa3563a
|
frontend: implement basic scope analysis
|
2023-09-17 00:38:47 -07:00 |
|
|
aadc8282a5
|
introduce impork, workload as cute import aliases (#10)
Co-authored-by: Violet White <violet.white.dammit@protonmail.com>
Co-authored-by: Violet White <violet.white@espeon.social>
|
2023-09-14 21:34:24 -07:00 |
|
|
63e7203db9
|
parser: fix bug in ide support
|
2023-09-13 19:50:23 -07:00 |
|
|
2307fdc0ed
|
parser: rewrite to be able to parse any node type on demand
|
2023-09-13 19:40:29 -07:00 |
|
a dinosaur
|
b42ca92d9f
|
evaluator: fix unary operators on floating point types always throwing a spurious error (#9)
|
2023-09-12 03:40:13 -04:00 |
|
|
a6f9a82e5e
|
language: none support
|
2023-09-12 02:03:41 -04:00 |
|
|
ca111f8e4b
|
ffi: ensure failure to find functions don't produce null pointer exceptions
|
2023-09-12 01:40:15 -04:00 |
|
|
a9e3e8a69a
|
ffi: don't try to use unsigned types from kotlin
|
2023-09-12 01:22:31 -04:00 |
|
|
260c9f437d
|
ffi: explicit parameter type conversion
|
2023-09-12 01:16:11 -04:00 |
|
|
4053c5825a
|
idea: fix pork symbol declaration
|
2023-09-12 00:50:06 -04:00 |
|
|
f64a54fa06
|
parser: fix integer literals
|
2023-09-12 00:46:09 -04:00 |
|
|
1b363dcf56
|
parser: implement long literal and handle overflow
|
2023-09-12 00:25:13 -04:00 |
|
|
7aa9d95221
|
idea: implement psi parser and the start of symbol declarations
|
2023-09-11 22:43:34 -04:00 |
|
|
b64c7fb259
|
parser: use ast user data to store attribution
|
2023-09-11 20:13:15 -04:00 |
|
a dinosaur
|
a07e0fe672
|
language: add boolean and/or operators, change negation syntax (#7)
* language: add boolean and/or operators, change negation syntax
* examples: simplify row builder using arrays
|
2023-09-11 14:02:58 -04:00 |
|
|
0aab45094a
|
language: implement for in
|
2023-09-11 05:34:09 -04:00 |
|
a dinosaur
|
9ba150bb69
|
language: add binary operators (#6)
- unary binary not
- infix bitwise and
- infix bitwise or
- infix bitwise exclusive or (xor)
|
2023-09-11 05:24:08 -04:00 |
|
|
d8c0ef43c1
|
parser: cleanup code for fixing comma bug
|
2023-09-11 05:20:08 -04:00 |
|
|
dbe4e7d5a5
|
parser: fix bug where comma was not required in function call
|
2023-09-11 05:17:55 -04:00 |
|
|
24d2ff5743
|
parser: fix parsing of modifiers for let definitions
|
2023-09-11 05:03:12 -04:00 |
|
|
8f60039d6e
|
language: implement let definitions
|
2023-09-11 04:57:13 -04:00 |
|
|
5d53381b82
|
ffi: include jni and resource configs for graal
|
2023-09-11 03:18:35 -04:00 |
|
|
14b3f4c6e9
|
minimal: pork-rt minimal runtime
|
2023-09-11 02:39:38 -04:00 |
|
|
2ee1565fb5
|
native: pass argument specs in order to support varadic ffi
|
2023-09-11 01:12:32 -04:00 |
|
a dinosaur
|
8d310e337a
|
language: add unary plus & minus, post increment & decrement operators, non-newline print builtin. fix block comments (#4)
|
2023-09-11 00:34:10 -04:00 |
|
a dinosaur
|
c3afd790b5
|
repository: add editorconfig dotfile (#5)
|
2023-09-11 00:33:51 -04:00 |
|
|
f6d2fc5165
|
idea: comment highlighting support
|
2023-09-10 22:07:38 -04:00 |
|
|
1be098d1c9
|
idea: rename gay.pizza.pork.intellij to gay.pizza.pork.idea
|
2023-09-10 20:56:04 -04:00 |
|
|
7b4257d719
|
ast: default value support in generation
|
2023-09-10 20:54:48 -04:00 |
|
|
033da5b2ea
|
stdlib: generate stdlib.manifest
|
2023-09-10 20:47:50 -04:00 |
|
|
e8c984f2dc
|
language: prelude and internal functions, and varargs support
|
2023-09-10 19:27:59 -04:00 |
|
|
1cfb197a7f
|
ensure new lines exist on all files
|
2023-09-10 04:37:30 -04:00 |
|
|
3ed9350cd2
|
github: graal windows and darwin builds
|
2023-09-10 04:36:24 -04:00 |
|