Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 54b7398f37178bd4e4048948e788b60d8eea8d99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*******************************************************************************
 * Copyright (c) 2009, 2017 Cloudsmith Inc. and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Cloudsmith Inc. - initial API and implementation
 *******************************************************************************/
package org.eclipse.equinox.internal.p2.metadata.expression;

import java.util.Iterator;
import org.eclipse.equinox.p2.metadata.expression.IEvaluationContext;

/**
 * An expression representing a variable stack in the current thread.
 */
class Assignment extends Binary {
	Assignment(Variable variable, Expression expression) {
		super(variable, expression);
	}

	@Override
	public final Object evaluate(IEvaluationContext context) {
		Object value = rhs.evaluate(context);
		context.setValue(lhs, value);
		return value;
	}

	@Override
	public int getExpressionType() {
		return TYPE_ASSIGNMENT;
	}

	@Override
	public int getPriority() {
		return IExpressionConstants.PRIORITY_ASSIGNMENT;
	}

	@Override
	public String getOperator() {
		return OPERATOR_ASSIGN;
	}

	@Override
	public Iterator<?> evaluateAsIterator(IEvaluationContext context) {
		Iterator<?> value = rhs.evaluateAsIterator(context);
		context.setValue(lhs, value);
		return value;
	}
}

Back to the top