From 4bb8a042a0a88f2dd4976f10e82d06df3fbf76cf Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Wed, 5 Dec 2018 12:45:38 -0500 Subject: [PATCH] fixes for objects with numeric keys --- jsvar.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jsvar.d b/jsvar.d index 1d7bf4c..5752aeb 100644 --- a/jsvar.d +++ b/jsvar.d @@ -1086,8 +1086,8 @@ struct var { } public ref var opIndex(string name, string file = __FILE__, size_t line = __LINE__) { - // if name is numeric, we should convert to int - if(name.length && name[0] >= '0' && name[0] <= '9') + // if name is numeric, we should convert to int for arrays + if(name.length && name[0] >= '0' && name[0] <= '9' && this.payloadType() == Type.Array) return opIndex(to!size_t(name), file, line); if(this.payloadType() != Type.Object && name == "prototype") @@ -1162,7 +1162,7 @@ struct var { } public ref var opIndexAssign(T)(T t, string name, string file = __FILE__, size_t line = __LINE__) { - if(name.appearsNumeric()) { + if(this.payloadType == Type.Array && name.appearsNumeric()) { try { auto i = to!size_t(name); return opIndexAssign(t, i, file, line);