mirror of https://github.com/adamdruppe/arsd.git
suck less by allowing new A.b
This commit is contained in:
parent
f5016214f1
commit
be3d42a436
1
jsvar.d
1
jsvar.d
|
@ -1850,6 +1850,7 @@ class PrototypeObject {
|
||||||
continue;
|
continue;
|
||||||
if(v.payloadType == var.Type.Object) {
|
if(v.payloadType == var.Type.Object) {
|
||||||
// I'd love to get the json value out but idk. FIXME
|
// 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) {
|
if(auto wno = cast(WrappedNativeObject) v._payload._object) {
|
||||||
auto obj = wno.getObject();
|
auto obj = wno.getObject();
|
||||||
if(obj is null)
|
if(obj is null)
|
||||||
|
|
16
script.d
16
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);
|
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) {
|
Expression parsePart(MyTokenStreamHere)(ref MyTokenStreamHere tokens) {
|
||||||
if(!tokens.empty) {
|
if(!tokens.empty) {
|
||||||
auto token = tokens.front;
|
auto token = tokens.front;
|
||||||
|
@ -2935,7 +2949,7 @@ Expression parseExpression(MyTokenStreamHere)(ref MyTokenStreamHere tokens, bool
|
||||||
auto start = tokens.front;
|
auto start = tokens.front;
|
||||||
tokens.popFront();
|
tokens.popFront();
|
||||||
|
|
||||||
auto expr = parseVariableName(tokens);
|
auto expr = parseDottedVariableName(tokens);
|
||||||
auto ne = new NewExpression(expr);
|
auto ne = new NewExpression(expr);
|
||||||
if(tokens.peekNextToken(ScriptToken.Type.symbol, "(")) {
|
if(tokens.peekNextToken(ScriptToken.Type.symbol, "(")) {
|
||||||
tokens.popFront();
|
tokens.popFront();
|
||||||
|
|
Loading…
Reference in New Issue