]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.ui/src/org/simantics/scl/ui/info/SCLInfo.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / bundles / org.simantics.scl.ui / src / org / simantics / scl / ui / info / SCLInfo.java
1 package org.simantics.scl.ui.info;
2
3 public class SCLInfo {
4
5     public static String[] RESERVED_WORDS = new String[] {
6         "module", //$NON-NLS-1$
7             
8         "data", //$NON-NLS-1$
9         "type", //$NON-NLS-1$
10         "effect", //$NON-NLS-1$
11         "class", //$NON-NLS-1$
12         "deriving", //$NON-NLS-1$
13         "instance", //$NON-NLS-1$
14         
15         "if", //$NON-NLS-1$
16         "then",         //$NON-NLS-1$
17         "else",       //$NON-NLS-1$
18         "match", //$NON-NLS-1$
19         "with", //$NON-NLS-1$
20         "where", //$NON-NLS-1$
21         "do", //$NON-NLS-1$
22         "mdo", //$NON-NLS-1$
23         "let", //$NON-NLS-1$
24         "in", //$NON-NLS-1$
25         
26         "infix", //$NON-NLS-1$
27         "infixl", //$NON-NLS-1$
28         "infixr", //$NON-NLS-1$
29         
30         "import", //$NON-NLS-1$
31         "include", //$NON-NLS-1$
32         "hiding", //$NON-NLS-1$
33         "importJava", //$NON-NLS-1$
34         
35         "as", //$NON-NLS-1$
36         "forall", //$NON-NLS-1$
37         "rule", //$NON-NLS-1$
38         "ruleset", //$NON-NLS-1$
39         "constraint", //$NON-NLS-1$
40         "extends", //$NON-NLS-1$
41         "by", //$NON-NLS-1$
42         "select", //$NON-NLS-1$
43         "enforce", //$NON-NLS-1$
44         "transformation", //$NON-NLS-1$
45         "when" //$NON-NLS-1$
46     };
47     
48 }