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

com.bigcustard.glide.language.JavascriptKeywords Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.bigcustard.glide.language;

public class JavascriptKeywords implements Keywords {
    @Override
    public String[] get() {
        return new String[] {"boolean", "break", "case", "catch", "char", "class",
                "const", "continue", "default", "do", "double", "else", "eval", "false", "finally", "float",
                "for", "function", "goto", "if", "in", "instanceof", "int", "long", "new", "null",
                "return", "switch", "this", "throw", "throws", "true", "try", "typeof", "var", "void", "while"};
    }

    @Override
    public String comment() {
        return "//";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy