Skip to content

Commit 4593191

Browse files
author
Arian
committed
Import Table
0 parents  commit 4593191

File tree

3 files changed

+112
-0
lines changed

3 files changed

+112
-0
lines changed

README.md

Whitespace-only changes.

Source/Table.js

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
/*
2+
---
3+
name: Table
4+
description: LUA-Style table implementation.
5+
...
6+
*/
7+
8+
define(['Base/Host/Array'], function(Array){
9+
10+
return function(){
11+
12+
this.length = 0;
13+
var keys = [], values = [];
14+
15+
this.set = function(key, value){
16+
var index = Array.indexOf(keys, key);
17+
if (index == -1){
18+
var length = keys.length;
19+
keys[length] = key;
20+
values[length] = value;
21+
this.length++;
22+
} else {
23+
values[index] = value;
24+
}
25+
return this;
26+
};
27+
28+
this.get = function(key){
29+
var index = Array.indexOf(keys, key);
30+
return (index == -1) ? null : values[index];
31+
};
32+
33+
this.unset = function(key){
34+
var index = Array.indexOf(keys, key);
35+
if (index != -1){
36+
this.length--;
37+
keys.splice(index, 1);
38+
return values.splice(index, 1)[0];
39+
}
40+
return null;
41+
};
42+
43+
this.erase = function(value){
44+
for (var i = 0, l = this.length; i < l; i++){
45+
if (values[i] === value){
46+
this.length--;
47+
keys.splice(i, 1);
48+
values.splice(i, 1);
49+
}
50+
}
51+
return this;
52+
};
53+
54+
this.forEach = function(fn, context){
55+
for (var i = 0, l = this.length; i < l; i++) fn.call(context, values[i], keys[i], this);
56+
};
57+
58+
};
59+
60+
});

Specs/spec/Table.js

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
2+
define(['Table/Table'], function(Table){
3+
4+
describe('Table', function(){
5+
6+
var table = new Table();
7+
var one = 1;
8+
var obj = {};
9+
var fn = function(){};
10+
11+
it('Adds a values to a Table instance', function(){
12+
expect(table.length).toEqual(0);
13+
table.set('foo', 'bar');
14+
expect(table.length).toEqual(1);
15+
table.set(one, 'one');
16+
table.set(fn, 'function');
17+
table.set(obj, 'an object');
18+
expect(table.get('foo')).toEqual('bar');
19+
expect(table.get(one)).toEqual('one');
20+
expect(table.get(fn)).toEqual('function');
21+
expect(table.get(obj)).toEqual('an object');
22+
expect(table.length).toEqual(4);
23+
});
24+
25+
it('Iterates over a Table instance', function(){
26+
var keys = [];
27+
var values = [];
28+
table.each(function(key, val){
29+
keys.push(key);
30+
values.push(val);
31+
});
32+
expect(keys).toEqual(['foo', one, fn, obj]);
33+
expect(values).toEqual(['bar', 'one', 'function', 'an object']);
34+
});
35+
36+
it('Removes values from a Table instance', function(){
37+
expect(table.length).toEqual(4);
38+
table.erase('foo');
39+
expect(table.length).toEqual(3);
40+
table.erase(one);
41+
table.erase(fn);
42+
table.erase(obj);
43+
expect(table.get('foo')).toEqual(null);
44+
expect(table.get(one)).toEqual(null);
45+
expect(table.get(fn)).toEqual(null);
46+
expect(table.get(obj)).toEqual(null);
47+
expect(table.length).toEqual(0);
48+
});
49+
50+
});
51+
52+
});

0 commit comments

Comments
 (0)