| ==== each |
| function doIt() { |
| l_item.each(items, l_method); |
| } |
| each = "test"; |
| == |
| function doIt () { |
| l_item.each(items, l_method); |
| } |
| each = "test"; |
| ==== get |
| function doIt() { |
| l_item.get(items, l_method); |
| } |
| get = "test"; |
| == |
| function doIt () { |
| l_item.get(items, l_method); |
| } |
| get = "test"; |
| ==== set |
| function doIt() { |
| l_item.set(items, l_method); |
| } |
| set = "test"; |
| == |
| function doIt () { |
| l_item.set(items, l_method); |
| } |
| set = "test"; |
| ==== namespace |
| function doIt() { |
| l_item.namespace(items, l_method); |
| } |
| namespace = "test"; |
| == |
| function doIt () { |
| l_item.namespace(items, l_method); |
| } |
| namespace = "test"; |
| ==== |