wasCSharpSQLite – Blame information for rev

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /*
2 * ContinueCmd.java
3 *
4 * Copyright (c) 1997 Cornell University.
5 * Copyright (c) 1997 Sun Microsystems, Inc.
6 *
7 * See the file "license.terms" for information on usage and
8 * redistribution of this file, and for a DISCLAIMER OF ALL
9 * WARRANTIES.
10 *
11 * Included in SQLite3 port to C# for use in testharness only; 2008 Noah B Hart
12 *
13 * RCS @(#) $Id: ContinueCmd.java,v 1.1.1.1 1998/10/14 21:09:20 cvsadmin Exp $
14 *
15 */
16 using System;
17 namespace tcl.lang
18 {
19  
20 /// <summary> This class implements the built-in "continue" command in Tcl.</summary>
21  
22 class ContinueCmd : Command
23 {
24 /// <summary> This procedure is invoked to process the "continue" Tcl command.
25 /// See the user documentation for details on what it does.
26 /// </summary>
27 /// <exception cref=""> TclException is always thrown.
28 /// </exception>
29  
30 public TCL.CompletionCode cmdProc( Interp interp, TclObject[] argv )
31 {
32 if ( argv.Length != 1 )
33 {
34 throw new TclNumArgsException( interp, 1, argv, null );
35 }
36 throw new TclException( interp, null, TCL.CompletionCode.CONTINUE );
37 }
38 }
39 }