aboutsummaryrefslogtreecommitdiff
path: root/src/lexer.l
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-03-30 22:36:53 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2025-03-30 22:41:21 +0300
commit957da9056c36a5eea15c6058701f7465b31f64a8 (patch)
tree7006d7c4ce258e88533e3b0347078a0264fe1bf3 /src/lexer.l
parentc87f5a8871edf6880b894a00b180c554ffd46d0a (diff)
downloadfwd-master.tar.gz
fwd-master.zip
WIP: rewrite C++ backend to be CHEADmaster
+ C allows for a bit more control, and we can manually handle closure contexts. For example `examples/fib.fwd` now works for effectively any `n`, pretty cool. + Fairly slow Fibonacci, I must admit. Initial profiling indicates it's mainly due to branch mispredictions, but I'll have to look into this a bit deeper. + The code is a bit hacked together, for now I'm more interested in getting things working, I'll worry about making things pretty later. + For testing, there's also initial support for modules, just so I can print stuff to the terminal + This commit is way too big, lol
Diffstat (limited to 'src/lexer.l')
-rw-r--r--src/lexer.l2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lexer.l b/src/lexer.l
index e6a3f22..24bda93 100644
--- a/src/lexer.l
+++ b/src/lexer.l
@@ -122,7 +122,6 @@ STRING \"(\\.|[^"\\])*\"
"==" {return EQ;}
"=>" {return FATARROW;}
-"!>" {return ERRARROW;}
"<<" {return LSHIFT;}
">>" {return RSHIFT;}
@@ -130,7 +129,6 @@ STRING \"(\\.|[^"\\])*\"
"if" {return IF;}
"else" {return ELSE;}
"nil" {return NIL;}
-"own" {return OWN;}
"pub" {return PUB;}
"import" {return IMPORT;}