Re: How to handle meta:__index read nil
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: How to handle meta:__index read nil
- From: "Mauro Iazzi" <mauro.iazzi@...>
- Date: 2007年5月27日 17:25:19 +0200
pwl.scalar[mainvid]._children = {};
is mainvid a variable containing a string?
if you want to index the string "mainvid" you should use the syntax
pwl.scalar["mainvid"]._children = {};
or
pwl.scalar.mainvid._children = {};
Is that it?