indexing description: "xxx" product: "Resource Bench" date: "$Date$" revision: "$Revision$" -- Ifndef_statement -> "#ifndef" identifier Instructions_list Second_part "#endif" class S_IFNDEF_STATEMENT inherit RB_AGGREGATE feature construct_name: STRING is once Result := "IFNDEF_STATEMENT" end production: LINKED_LIST [CONSTRUCT] is local identifier: IDENTIFIER instructions_list: INSTRUCTIONS_LIST second_part: SECOND_PART once !! Result.make Result.forth keyword ("#ifndef") commit !! identifier.make put (identifier) !! instructions_list.make put (instructions_list) !! second_part.make put (second_part) keyword ("#endif") end end -- class S_IFNDEF_STATEMENT --|--------------------------------------------------------------- --| Copyright (C) Interactive Software Engineering, Inc. -- --| 270 Storke Road, Suite 7 Goleta, California 93117 -- --| (805) 685-1006 -- --| All rights reserved. Duplication or distribution prohibited -- --|---------------------------------------------------------------