/src/tools/syntax/tree/liberty_ast_assignment_or_call.e
http://github.com/tybor/Liberty · Specman e · 107 lines · 78 code · 15 blank · 14 comment · 0 complexity · 76f3fd623f1f5115507b3e8baec833af MD5 · raw file
- -- This file is part of Liberty Eiffel.
- --
- -- Liberty Eiffel is free software: you can redistribute it and/or modify
- -- it under the terms of the GNU General Public License as published by
- -- the Free Software Foundation, version 3 of the License.
- --
- -- Liberty Eiffel is distributed in the hope that it will be useful,
- -- but WITHOUT ANY WARRANTY; without even the implied warranty of
- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- -- GNU General Public License for more details.
- --
- -- You should have received a copy of the GNU General Public License
- -- along with Liberty Eiffel. If not, see <http://www.gnu.org/licenses/>.
- --
- class LIBERTY_AST_ASSIGNMENT_OR_CALL
- inherit
- LIBERTY_AST_NON_TERMINAL_NODE
- create {LIBERTY_NODE_FACTORY}
- make
- feature {LIBERTY_AST_HANDLER}
- writable: LIBERTY_AST_WRITABLE is
- require
- is_assignment
- do
- Result ::= nodes.item(0)
- end
- expression: LIBERTY_AST_EXPRESSION is
- require
- is_assignment
- do
- Result ::= nodes.item(2)
- end
- target: LIBERTY_AST_TARGET is
- require
- is_call
- do
- Result ::= nodes.item(0)
- end
- r10: LIBERTY_AST_R10 is
- require
- is_call
- do
- Result ::= nodes.item(1)
- end
- is_regular_assignment: BOOLEAN is
- require
- is_assignment
- do
- Result := nodes.item(1).name.is_equal(once "KW :=")
- ensure
- Result implies not is_assignment_attempt and then not is_forced_assignment
- end
- is_assignment_attempt: BOOLEAN is
- require
- is_assignment
- do
- Result := nodes.item(1).name.is_equal(once "KW ?=")
- ensure
- Result implies not is_regular_assignment and then not is_forced_assignment
- end
- is_forced_assignment: BOOLEAN is
- require
- is_assignment
- do
- Result := nodes.item(1).name.is_equal(once "KW ::=")
- ensure
- Result implies not is_assignment_attempt and then not is_regular_assignment
- end
- is_assignment: BOOLEAN is
- do
- Result := count = 3
- ensure
- Result = not is_call
- end
- is_call: BOOLEAN is
- do
- Result := count = 2
- ensure
- Result = not is_assignment
- end
- feature {ANY}
- count: INTEGER is
- do
- Result := nodes.count
- end
- name: STRING is "Assignment_Or_Call"
- feature {}
- possible_counts: SET[INTEGER] is
- once
- Result := {AVL_SET[INTEGER] << 2, 3 >> }
- end
- end