Changeset 544
- Timestamp:
- 02/08/09 20:02:49 (3 years ago)
- Location:
- interpreter/trunk/modules/System
- Files:
-
- 3 edited
-
collections.kt (modified) (1 diff)
-
collections/array.c (modified) (1 diff)
-
doc.kt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
interpreter/trunk/modules/System/collections.kt
r537 r544 143 143 ], 144 144 (k < this.key and this.left is System.null) [ 145 (make System.collections._TreeNode(k, null, this)) ;145 (make System.collections._TreeNode(k, null, this)).item; 146 146 ], 147 147 (k > this.key and this.right is System.null) [ 148 (make System.collections._TreeNode(k, null, this)) ;148 (make System.collections._TreeNode(k, null, this)).item; 149 149 ], 150 150 (k < this.key) [ this.left|get(k); ], -
interpreter/trunk/modules/System/collections/array.c
r530 r544 193 193 KITE_NO_ARGS; 194 194 195 for(idx=0; idx < array_struct->size;idx++) {195 for(idx=0;array_struct && idx < array_struct->size;idx++) { 196 196 stringrep = kite_string_object(thd, array_struct->array[idx]); 197 197 ret = realloc(ret, strlen(ret) + -
interpreter/trunk/modules/System/doc.kt
r343 r544 57 57 ) /[Add node to current node's list of children.]/ 58 58 [ 59 this.children |append(child);59 this.children << child; 60 60 ] 61 61 ];
Note: See TracChangeset
for help on using the changeset viewer.
