ChaiScript/unittests/index_operator.chai
2011-06-13 18:14:41 -07:00

11 lines
186 B
ChaiScript

// tests more complex parses of the index operator
def Bob::bob3() { return [1,2,3]; }
def Bob::Bob() {}
var b = Bob();
assert_equal(b.bob3()[0], 1);
assert_equal((b.bob3())[1], 2);