From be3d42a436a39cb9b585701967acdce9dad30d7c Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sat, 19 Dec 2020 21:38:36 -0500 Subject: [PATCH] suck less by allowing new A.b --- jsvar.d | 1 + script.d | 16 +++++++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/jsvar.d b/jsvar.d index d0e72fd..9f99d48 100644 --- a/jsvar.d +++ b/jsvar.d @@ -1850,6 +1850,7 @@ class PrototypeObject { continue; if(v.payloadType == var.Type.Object) { // I'd love to get the json value out but idk. FIXME + if(v._payload._object is null) continue; if(auto wno = cast(WrappedNativeObject) v._payload._object) { auto obj = wno.getObject(); if(obj is null) diff --git a/script.d b/script.d index a2de052..94fab7a 100644 --- a/script.d +++ b/script.d @@ -2556,6 +2556,20 @@ VariableExpression parseVariableName(MyTokenStreamHere)(ref MyTokenStreamHere to throw new ScriptCompileException("Found "~token.str~" when expecting identifier", token.scriptFilename, token.lineNumber); } +Expression parseDottedVariableName(MyTokenStreamHere)(ref MyTokenStreamHere tokens) { + assert(!tokens.empty); + + auto ve = parseVariableName(tokens); + + auto token = tokens.front; + if(token.type == ScriptToken.Type.symbol && token.str == ".") { + tokens.popFront(); + return new DotVarExpression(ve, parseVariableName(tokens)); + } + throw new ScriptCompileException("Found "~token.str~" when expecting identifier", token.scriptFilename, token.lineNumber); +} + + Expression parsePart(MyTokenStreamHere)(ref MyTokenStreamHere tokens) { if(!tokens.empty) { auto token = tokens.front; @@ -2935,7 +2949,7 @@ Expression parseExpression(MyTokenStreamHere)(ref MyTokenStreamHere tokens, bool auto start = tokens.front; tokens.popFront(); - auto expr = parseVariableName(tokens); + auto expr = parseDottedVariableName(tokens); auto ne = new NewExpression(expr); if(tokens.peekNextToken(ScriptToken.Type.symbol, "(")) { tokens.popFront();