suck less by allowing new A.b

This commit is contained in:
Adam D. Ruppe 2020-12-19 21:38:36 -05:00
parent f5016214f1
commit be3d42a436
2 changed files with 16 additions and 1 deletions

View File

@ -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)

View File

@ -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();