Represents an arbitrary expression permissible on the left-hand side of an assignment statement. For example, consider the following method: method f(int[] xs, int x, int y): x = y + 1 xs[i] = x This contains two assignment statements with the lval's x and
| 2560 | * |
| 2561 | */ |
| 2562 | public interface LVal extends Expr { |
| 2563 | |
| 2564 | } |
| 2565 | |
| 2566 | /** |
| 2567 | * Represents an arbitrary expression within a Whiley source file. Every |
nothing calls this directly
no outgoing calls
no test coverage detected