home *** CD-ROM | disk | FTP | other *** search
- //--------------------------------------------------------------------------
- // Object Scripting
- // Copyright (c) 1996, 1997 by Borland International, All Rights Reserved
- //
- // TEST.SPP: Test harness.
- //--------------------------------------------------------------------------
- print typeid(module()); // Verify script loaded.
-
- //
- // Handy globals.
- //
- import IDE;
- import scriptEngine;
- import editor;
- import debugger;
-
- sTmp = new String();
- Result;
-
- CurBuf;
- CurView;
- CurBlk;
- CurPos;
-
- if (editor.TopView != NULL) { // Define these if there is an EditView.
- CurBuf = editor.TopBuffer;
- CurView = editor.TopView;
- CurBlk = CurView.Block;
- CurPos =CurView.Position;
- }
-
- //
- // Test code.
- //
-
-
-
-
- print "done"; // Verify script terminated.
-
-