Changeset 4551 for trunk/compiler
- Timestamp:
- 10/31/08 10:06:18 (2 months ago)
- Files:
-
- 1 modified
-
trunk/compiler/logtalk.pl (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/compiler/logtalk.pl
r4550 r4551 479 479 throw(error(domain_error(object_property, Prop), object_property(Obj, Prop))). 480 480 481 object_property(user, built_in).482 object_property(debugger, built_in).483 object_property(logtalk, built_in).484 485 481 object_property(Obj, Prop) :- 486 482 '$lgt_current_object_'(Obj, _, _, _, _, _, _, _, _, _, Type), … … 524 520 525 521 protocol_property(Ptc, Prop) :- 526 '$lgt_current_protocol_'(Ptc, _, _, _, _,Type),522 '$lgt_current_protocol_'(Ptc, _, _, _, Type), 527 523 ( Prop = Type % static/dynamic property 528 524 ; '$lgt_entity_property_'(Ptc, Prop) % other properties … … 3395 3391 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 3396 3392 % 3397 % built-in entity runtime table clauses 3393 % built-in entity runtime table clauses and properties 3398 3394 % 3399 3395 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% … … 3410 3406 3411 3407 3408 '$lgt_entity_property_'(logtalk, built_in). 3409 '$lgt_entity_property_'(user, built_in). 3412 3410 '$lgt_entity_property_'(user, threaded). 3411 '$lgt_entity_property_'(debugger, built_in). 3412 '$lgt_entity_property_'(expanding, built_in). 3413 '$lgt_entity_property_'(monitoring, built_in). 3413 3414 3414 3415
