From dd012e5461ae23ce388924fcc78cd438c6d8c322 Mon Sep 17 00:00:00 2001 From: schinz Date: Thu, 14 Oct 2004 07:47:30 +0000 Subject: - added option -Xrtt to enable support for run-... - added option -Xrtt to enable support for run-time types --- sources/scalac/CompilerCommand.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sources/scalac/CompilerCommand.java') diff --git a/sources/scalac/CompilerCommand.java b/sources/scalac/CompilerCommand.java index 1e014ee452..d2e244b271 100644 --- a/sources/scalac/CompilerCommand.java +++ b/sources/scalac/CompilerCommand.java @@ -85,6 +85,7 @@ public class CompilerCommand extends CommandParser { public final BooleanOptionParser Xmarkup; public final BooleanOptionParser Xnewmatch; public final BooleanOptionParser XpreserveWS; + public final BooleanOptionParser XrunTimeTypes; /* * Whole-program optimization options @@ -279,6 +280,10 @@ public class CompilerCommand extends CommandParser { "Xinline", "Inline method calls that can be resolved statically", false), + this.XrunTimeTypes = new BooleanOptionParser(this, + "Xrtt", "Enable run-time types", + false), + this.unknown_options = new UnknownOptionParser(this), this.files = new ScalaFileArgumentParser(this), -- cgit v1.2.3