Changeset da0c97d9e14af733fc0be5c9a2d0f1ba109decc2
- Timestamp:
- 04/14/10 02:07:43 (2 years ago)
- Author:
- Philip Herron <redbrain@…>
- Parents:
- 28b36b7b5a9b4fee6f5e907f314e7f6f1e234b44
- Children:
- 97bcdcfc2858e286713731691c0e5abf52c65707
- git-committer:
- Philip Herron <redbrain@omicron.(none)> / 2010-04-14T02:07:43Z+0100
- Message:
-
cleanup and access fix
- Location:
- src
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r1a9fc2c
|
rda0c97d
|
|
| 1 | 1 | /** |
| 2 | | * builtin_call_table.c -> Part of Crules Programming Language |
| | 2 | * bb_builtin.c -> Part of Crules Programming Language |
| 3 | 3 | * |
| 4 | 4 | * Crules is the legal property of its developers. Please refer to the |
| … |
… |
|
| 43 | 43 | { |
| 44 | 44 | crl_symbol_obj *retval= NULL; |
| 45 | | crl_symbol_init( retval ); |
| 46 | | crl_garbage_invoke( ); |
| | 45 | crl_fatal("not imeplemented yet!\n"); |
| 47 | 46 | return retval; |
| 48 | 47 | } |
-
|
r4c5f389
|
rda0c97d
|
|
| 722 | 722 | { |
| 723 | 723 | crl_symbol_obj *t1 = crl_runtime_expression_evaluator( opa, context ); |
| 724 | | if( t1 ) { crl_runtime_access( &t1, op_b, context ); } |
| | 724 | if( t1 ) { retval = crl_runtime_access( &t1, op_b, context ); } |
| 725 | 725 | else { |
| 726 | 726 | crl_fatal("symbol undefined error!\n"); |