001 /* 002 * Copyright 2010-2015 JetBrains s.r.o. 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 017 package org.jetbrains.kotlin.renderer; 018 019 import java.util.Arrays; 020 import java.util.Set; 021 import java.util.HashSet; 022 023 /** This class is generated by {@link "org.jetbrains.kotlin.generators.frontend.GenerateKeywordStrings"}. DO NOT MODIFY MANUALLY */ 024 public class KeywordStringsGenerated { 025 private KeywordStringsGenerated() {} 026 027 public static final Set<String> KEYWORDS = new HashSet<String>(Arrays.asList( 028 "package", 029 "as", 030 "typealias", 031 "class", 032 "this", 033 "super", 034 "val", 035 "var", 036 "fun", 037 "for", 038 "null", 039 "true", 040 "false", 041 "is", 042 "in", 043 "throw", 044 "return", 045 "break", 046 "continue", 047 "object", 048 "if", 049 "try", 050 "else", 051 "while", 052 "do", 053 "when", 054 "interface", 055 "This" 056 )); 057 }