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

org.dynjs.parser.ast.Parameter Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
package org.dynjs.parser.ast;

import org.dynjs.parser.js.Position;

public class Parameter {
    
    private Position position;
    private String identifier;

    public Parameter(Position position, String identifier) {
        this.position = position;
        this.identifier = identifier;
    }
    
    public Position getPosition() {
        return this.position;
    }
    
    public String getIdentifier() {
        return this.identifier;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy