Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpschonbac2009-01-10 00:59:01 +0000
committerpschonbac2009-01-10 00:59:01 +0000
commitb652f86b31c9d2facb70bdda51704ae1f95a7358 (patch)
tree059d4728f639b9d1d7b840227cc91ed5dc8bd768 /plugins/org.eclipse.xtend/src/org/eclipse/internal/xtend/expression/ast/ListLiteral.java
parentd5312a4578669fe68e5f34fd672a395746089c8b (diff)
downloadorg.eclipse.xpand-b652f86b31c9d2facb70bdda51704ae1f95a7358.tar.gz
org.eclipse.xpand-b652f86b31c9d2facb70bdda51704ae1f95a7358.tar.xz
org.eclipse.xpand-b652f86b31c9d2facb70bdda51704ae1f95a7358.zip
- Updated M2T Xpand to be in sync with version 4.3.1
- The previous step required some additions to the MWE core - Updated all license headers
Diffstat (limited to 'plugins/org.eclipse.xtend/src/org/eclipse/internal/xtend/expression/ast/ListLiteral.java')
-rw-r--r--plugins/org.eclipse.xtend/src/org/eclipse/internal/xtend/expression/ast/ListLiteral.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/org.eclipse.xtend/src/org/eclipse/internal/xtend/expression/ast/ListLiteral.java b/plugins/org.eclipse.xtend/src/org/eclipse/internal/xtend/expression/ast/ListLiteral.java
index d4fd48da..22de5f83 100644
--- a/plugins/org.eclipse.xtend/src/org/eclipse/internal/xtend/expression/ast/ListLiteral.java
+++ b/plugins/org.eclipse.xtend/src/org/eclipse/internal/xtend/expression/ast/ListLiteral.java
@@ -1,12 +1,10 @@
/*******************************************************************************
- * Copyright (c) 2005, 2007 committers of openArchitectureWare and others.
+ * Copyright (c) 2005-2009 itemis AG (http://www.itemis.eu) 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:
- * committers of openArchitectureWare - initial API and implementation
*******************************************************************************/
package org.eclipse.internal.xtend.expression.ast;
@@ -51,7 +49,7 @@ public class ListLiteral extends Expression {
return col;
}
- public Type analyze(final ExecutionContext ctx, final Set<AnalysationIssue> issues) {
+ public Type analyzeInternal(final ExecutionContext ctx, final Set<AnalysationIssue> issues) {
Type t = null;
for (int i = 0; i < elements.length; i++) {
final Expression element = elements[i];

Back to the top