This commit is contained in:
2020-11-09 22:00:17 -07:00
parent b6e30b24e1
commit e1ea3eaf8c
5 changed files with 75 additions and 13 deletions

View File

@@ -14,7 +14,10 @@ class Hiss {
var stream = new Stream(hissFile);
var reader = new Reader();
while (!stream.isEmpty()) {
while (true) {
stream.dropWhitespace();
if (stream.isEmpty())
break;
var position = stream.position();
var nextExp = reader.read(stream);
trace(nextExp);
@@ -23,6 +26,7 @@ class Hiss {
case Some(nextExp):
classFields.push(readerExpToField(nextExp, position));
case None:
stream.dropWhitespace(); // If there was a comment, drop whitespace that comes after
}
}
@@ -30,9 +34,9 @@ class Hiss {
}
static function readerExpToField(exp:ReaderExp, position:String):Field {
switch (exp) {
return switch (exp) {
case Call(Symbol("defvar"), args) if (args.length == 2):
return {
{
name: switch (args[0]) {
case Symbol(name):
name;
@@ -44,22 +48,71 @@ class Hiss {
readerExpToHaxeExpr(args[1])),
pos: Context.currentPos()
};
case Call(Symbol("defun"), args) if (args.length > 2):
{
name: switch (args[0]) {
case Symbol(name):
name;
default:
throw 'The first argument to defun at $position should be a function name';
},
access: [APublic, AStatic],
kind: FFun({
args: switch (args[1]) {
case List(funcArgs):
[
for (funcArg in funcArgs)
{
name: switch (funcArg) {
case Symbol(name):
name;
default:
throw '$funcArg should be a symbol for a function argument';
},
type: null
}
];
default:
throw '$args[1] should be an argument list';
},
ret: null,
expr: {
pos: Context.currentPos(),
expr: EReturn(readerExpToHaxeExpr(Call(Symbol("begin"), args.slice(2))))
}
}),
pos: Context.currentPos()
};
default:
throw '$exp at $position is not a valid defvar or defun expression';
}
};
}
static function readerExpToHaxeExpr(exp:ReaderExp):Expr {
return switch (exp) {
var expr = switch (exp) {
case Symbol(name):
Context.parse(name, Context.currentPos());
case Str(s):
return {
{
pos: Context.currentPos(),
expr: EConst(CString(s))
};
case Call(Symbol("begin"), body):
{
pos: Context.currentPos(),
expr: EBlock([for (bodyExp in body) readerExpToHaxeExpr(bodyExp)])
};
case Call(func, body):
{
pos: Context.currentPos(),
expr: ECall(readerExpToHaxeExpr(func), [for (bodyExp in body) readerExpToHaxeExpr(bodyExp)])
};
case RawHaxe(code):
Context.parse(code, Context.currentPos());
default:
throw 'cannot convert $exp yet';
};
trace(expr.expr);
return expr;
}
}