All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.caoccao.javet.swc4j.ast.clazz.Swc4jAstConstructor Maven / Gradle / Ivy

Go to download

swc4j (SWC for Java) is an ultra-fast JavaScript and TypeScript compilation and bundling tool on JVM.

There is a newer version: 1.3.0
Show newest version
/*
 * Copyright (c) 2024. caoccao.com Sam Cao
 *
 * 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.caoccao.javet.swc4j.ast.clazz;

import com.caoccao.javet.swc4j.ast.Swc4jAst;
import com.caoccao.javet.swc4j.ast.enums.Swc4jAstAccessibility;
import com.caoccao.javet.swc4j.ast.enums.Swc4jAstType;
import com.caoccao.javet.swc4j.ast.interfaces.ISwc4jAst;
import com.caoccao.javet.swc4j.ast.interfaces.ISwc4jAstClassMember;
import com.caoccao.javet.swc4j.ast.interfaces.ISwc4jAstParamOrTsParamProp;
import com.caoccao.javet.swc4j.ast.interfaces.ISwc4jAstPropName;
import com.caoccao.javet.swc4j.ast.stmt.Swc4jAstBlockStmt;
import com.caoccao.javet.swc4j.ast.visitors.ISwc4jAstVisitor;
import com.caoccao.javet.swc4j.ast.visitors.Swc4jAstVisitorResponse;
import com.caoccao.javet.swc4j.jni2rust.*;
import com.caoccao.javet.swc4j.span.Swc4jSpan;
import com.caoccao.javet.swc4j.utils.AssertionUtils;
import com.caoccao.javet.swc4j.utils.SimpleList;

import java.util.List;
import java.util.Optional;

@Jni2RustClass(filePath = Jni2RustFilePath.AstUtils)
public class Swc4jAstConstructor
        extends Swc4jAst
        implements ISwc4jAstClassMember {
    protected final List params;
    protected Optional accessibility;
    protected Optional body;
    @Jni2RustField(syntaxContext = true)
    protected int ctxt;
    protected ISwc4jAstPropName key;
    @Jni2RustField(name = "is_optional")
    protected boolean optional;

    @Jni2RustMethod
    public Swc4jAstConstructor(
            @Jni2RustParam(syntaxContext = true) int ctxt,
            ISwc4jAstPropName key,
            List params,
            @Jni2RustParam(optional = true) Swc4jAstBlockStmt body,
            @Jni2RustParam(optional = true) Swc4jAstAccessibility accessibility,
            boolean optional,
            Swc4jSpan span) {
        super(span);
        setAccessibility(accessibility);
        setBody(body);
        setCtxt(ctxt);
        setKey(key);
        setOptional(optional);
        this.params = AssertionUtils.notNull(params, "Params");
        this.params.forEach(node -> node.setParent(this));
    }

    public static Swc4jAstConstructor create(ISwc4jAstPropName key) {
        return create(key, SimpleList.of());
    }

    public static Swc4jAstConstructor create(
            ISwc4jAstPropName key,
            List params) {
        return create(key, params, null);
    }

    public static Swc4jAstConstructor create(
            ISwc4jAstPropName key,
            List params,
            Swc4jAstBlockStmt body) {
        return create(key, params, body, null);
    }

    public static Swc4jAstConstructor create(
            ISwc4jAstPropName key,
            List params,
            Swc4jAstBlockStmt body,
            Swc4jAstAccessibility accessibility) {
        return create(key, params, body, accessibility, false);
    }

    public static Swc4jAstConstructor create(
            ISwc4jAstPropName key,
            List params,
            Swc4jAstBlockStmt body,
            Swc4jAstAccessibility accessibility,
            boolean optional) {
        return create(0, key, params, body, accessibility, optional);
    }

    public static Swc4jAstConstructor create(
            int ctxt,
            ISwc4jAstPropName key,
            List params,
            Swc4jAstBlockStmt body,
            Swc4jAstAccessibility accessibility,
            boolean optional) {
        return new Swc4jAstConstructor(ctxt, key, params, body, accessibility, optional, Swc4jSpan.DUMMY);
    }

    @Jni2RustMethod
    public Optional getAccessibility() {
        return accessibility;
    }

    @Jni2RustMethod
    public Optional getBody() {
        return body;
    }

    @Override
    public List getChildNodes() {
        List childNodes = SimpleList.copyOf(params);
        body.ifPresent(childNodes::add);
        childNodes.add(key);
        return childNodes;
    }

    @Jni2RustMethod
    public int getCtxt() {
        return ctxt;
    }

    @Jni2RustMethod
    public ISwc4jAstPropName getKey() {
        return key;
    }

    @Jni2RustMethod
    public List getParams() {
        return params;
    }

    @Override
    public Swc4jAstType getType() {
        return Swc4jAstType.Constructor;
    }

    @Jni2RustMethod
    public boolean isOptional() {
        return optional;
    }

    @Override
    public boolean replaceNode(ISwc4jAst oldNode, ISwc4jAst newNode) {
        if (body.isPresent() && body.get() == oldNode && (newNode == null || newNode instanceof Swc4jAstBlockStmt)) {
            setBody((Swc4jAstBlockStmt) newNode);
            return true;
        }
        if (key == oldNode && newNode instanceof ISwc4jAstPropName) {
            setKey((ISwc4jAstPropName) newNode);
            return true;
        }
        if (!params.isEmpty() && newNode instanceof ISwc4jAstParamOrTsParamProp) {
            final int size = params.size();
            for (int i = 0; i < size; i++) {
                if (params.get(i) == oldNode) {
                    params.set(i, (ISwc4jAstParamOrTsParamProp) newNode);
                    newNode.setParent(this);
                    return true;
                }
            }
        }
        return false;
    }

    public Swc4jAstConstructor setAccessibility(Swc4jAstAccessibility accessibility) {
        this.accessibility = Optional.ofNullable(accessibility);
        return this;
    }

    public Swc4jAstConstructor setBody(Swc4jAstBlockStmt body) {
        this.body = Optional.ofNullable(body);
        this.body.ifPresent(node -> node.setParent(this));
        return this;
    }

    public Swc4jAstConstructor setCtxt(int ctxt) {
        this.ctxt = ctxt;
        return this;
    }

    public Swc4jAstConstructor setKey(ISwc4jAstPropName key) {
        this.key = AssertionUtils.notNull(key, "Key");
        this.key.setParent(this);
        return this;
    }

    public Swc4jAstConstructor setOptional(boolean optional) {
        this.optional = optional;
        return this;
    }

    @Override
    public Swc4jAstVisitorResponse visit(ISwc4jAstVisitor visitor) {
        switch (visitor.visitConstructor(this)) {
            case Error:
                return Swc4jAstVisitorResponse.Error;
            case OkAndBreak:
                return Swc4jAstVisitorResponse.OkAndContinue;
            default:
                return super.visit(visitor);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy