public DebugEventSocketProxy(BaseRecognizer recognizer, int port, ITreeAdaptor adaptor)
		{
			this.grammarFileName = recognizer.GrammarFileName;
			this.port = port;
			this.adaptor = adaptor;
		}
Exemple #2
0
 public DebugEventSocketProxy(BaseRecognizer recognizer, int port, ITreeAdaptor adaptor)
 {
     this.grammarFileName = recognizer.GrammarFileName;
     this.port            = port;
     this.adaptor         = adaptor;
 }
		public DebugEventSocketProxy(BaseRecognizer recognizer, ITreeAdaptor adaptor)
			: this(recognizer, DEFAULT_DEBUGGER_PORT, adaptor)
		{
		}
Exemple #4
0
 public DebugEventSocketProxy(BaseRecognizer recognizer, ITreeAdaptor adaptor)
     : this(recognizer, DEFAULT_DEBUGGER_PORT, adaptor)
 {
 }