X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=org.simantics.express%2Fsrc%2Forg%2Fsimantics%2Fexpress%2Fast%2Ftypes%2FExpList.java;fp=org.simantics.express%2Fsrc%2Forg%2Fsimantics%2Fexpress%2Fast%2Ftypes%2FExpList.java;h=0f70c40df1c51865aab79b23c5dfce0e74a6b4f1;hb=2f25d8293b887536bc1c07699f97e60f2705ff7e;hp=0000000000000000000000000000000000000000;hpb=b3a4deee3300e5d00ca49e4402c74fe67d832cb9;p=simantics%2Finterop.git diff --git a/org.simantics.express/src/org/simantics/express/ast/types/ExpList.java b/org.simantics.express/src/org/simantics/express/ast/types/ExpList.java new file mode 100644 index 0000000..0f70c40 --- /dev/null +++ b/org.simantics.express/src/org/simantics/express/ast/types/ExpList.java @@ -0,0 +1,19 @@ +/******************************************************************************* + * Copyright (c) 2007- VTT Technical Research Centre of Finland. + * 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: + * VTT Technical Research Centre of Finland - initial API and implementation + *******************************************************************************/ +package org.simantics.express.ast.types; + +public class ExpList extends ExpParametrizedType { + + public ExpList(ExpType parameter) { + super(parameter); + } + +}