/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.devtools.j2objc.ast; import com.google.common.collect.Lists; import java.util.List; import javax.lang.model.type.TypeMirror; /** * Native expression node type. */ public class NativeExpression extends Expression { private String code = null; private TypeMirror typeMirror = null; private List<TypeMirror> importTypes = Lists.newArrayList(); public NativeExpression(NativeExpression other) { super(other); code = other.getCode(); typeMirror = other.getTypeMirror(); importTypes.addAll(other.getImportTypes()); } public NativeExpression(String code, TypeMirror type) { this.code = code; typeMirror = type; } @Override public Kind getKind() { return Kind.NATIVE_EXPRESSION; } public String getCode() { return code; } @Override public TypeMirror getTypeMirror() { return typeMirror; } public List<TypeMirror> getImportTypes() { return importTypes; } @Override protected void acceptInner(TreeVisitor visitor) { visitor.visit(this); visitor.endVisit(this); } @Override public NativeExpression copy() { return new NativeExpression(this); } public NativeExpression addImportType(TypeMirror type) { importTypes.add(type); return this; } }