summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2003-07-11 13:02:40 +0000
committerMartin Odersky <odersky@gmail.com>2003-07-11 13:02:40 +0000
commitca9f4fbb7b1212cfcde866ee95957afc6d157943 (patch)
tree20ef511d9ccb659a8d876477120994bea680e1d2 /support
parent319090d57b6736033c0e635da83ff571df5bd1d0 (diff)
downloadscala-ca9f4fbb7b1212cfcde866ee95957afc6d157943.tar.gz
scala-ca9f4fbb7b1212cfcde866ee95957afc6d157943.tar.bz2
scala-ca9f4fbb7b1212cfcde866ee95957afc6d157943.zip
*** empty log message ***
Diffstat (limited to 'support')
-rw-r--r--support/latex/verbfilterScala.java14
1 files changed, 8 insertions, 6 deletions
diff --git a/support/latex/verbfilterScala.java b/support/latex/verbfilterScala.java
index b8db2fb6e9..d71b6b9d3f 100644
--- a/support/latex/verbfilterScala.java
+++ b/support/latex/verbfilterScala.java
@@ -5,12 +5,14 @@ import java.io.*;
public class verbfilterScala {
static String[] reserved = {
- "abstract", "as", "case", "class", "constr", "def", "do", "else",
- "extends", "false", "final", "for", "if", "import",
- "is", "new", "null", "object", "override", "package",
- "private", "protected", "sealed", "super", "this",
- "trait", "true", "type", "val", "var",
- "with", "yield"};
+ "abstract", "as", "case", "catch", "class",
+ "def", "do", "else", "extends", "false",
+ "final", "finally", "for", "if", "import",
+ "is", "new", "null", "object", "override",
+ "package", "private", "protected", "return",
+ "sealed", "super", "this", "trait", "try",
+ "true", "type", "val", "var", "with",
+ "while", "yield"};
static final int TABINC = 8;