aboutsummaryrefslogtreecommitdiffstats
path: root/integration/intellij/src/main/java/ai/vespa/intellij/schema/psi/SdElementType.java
blob: 2f044168a0aa3dcefcb374069e3f891b2e4b84ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.intellij.schema.psi;

import com.intellij.psi.tree.IElementType;
import ai.vespa.intellij.schema.SdLanguage;

/**
 * An SdElementType.
 *
 * @author Shahar Ariel
 */
public class SdElementType extends IElementType {
    
    public SdElementType(String debugName) {
        super(debugName, SdLanguage.INSTANCE);
    }

}