comparison truffle/com.oracle.truffle.tools.debug.shell/src/com/oracle/truffle/tools/debug/shell/client/SimpleREPLClient.java @ 22157:dc83cc1f94f2

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 64dcb0a9fabf
children c3e397ce5941
comparison
equal deleted inserted replaced
22156:50056a161d7f 22157:dc83cc1f94f2
22 * or visit www.oracle.com if you need additional information or have any 22 * or visit www.oracle.com if you need additional information or have any
23 * questions. 23 * questions.
24 */ 24 */
25 package com.oracle.truffle.tools.debug.shell.client; 25 package com.oracle.truffle.tools.debug.shell.client;
26 26
27 import java.io.*; 27 import com.oracle.truffle.api.source.Source;
28 import java.util.*; 28 import com.oracle.truffle.tools.debug.shell.REPLClient;
29 29 import com.oracle.truffle.tools.debug.shell.REPLMessage;
30 import jline.console.*; 30 import com.oracle.truffle.tools.debug.shell.REPLServer;
31 31 import java.io.IOException;
32 import com.oracle.truffle.api.source.*; 32 import java.io.PrintStream;
33 import com.oracle.truffle.tools.debug.shell.*; 33 import java.util.ArrayList;
34 import java.util.Arrays;
35 import java.util.Collection;
36 import java.util.Collections;
37 import java.util.Comparator;
38 import java.util.HashMap;
39 import java.util.List;
40 import java.util.Map;
41 import java.util.TreeSet;
42 import jline.console.ConsoleReader;
34 43
35 /** 44 /**
36 * A very simple line-oriented, language-agnostic debugging client shell: the first step toward a 45 * A very simple line-oriented, language-agnostic debugging client shell: the first step toward a
37 * general, extensible debugging framework designed to be adapted for remote debugging. 46 * general, extensible debugging framework designed to be adapted for remote debugging.
38 * <p> 47 * <p>