Parses the given code procedure and adds an anonymous procedure to the name space.

HRESULT ParseProcedureText(
   LPCOLESTR    pstrCode,
   LPCOLESTR    pstrFormalParams,
   LPCOLESTR    pstrItemName,
   IUnknown*    punkContext,
   LPCOLESTR    pstrDelimiter,
   DWORD_PTR    dwSourceContextCookie,
   ULONG        ulStartingLineNumber,
   DWORD        dwFlags,
   IDispatch**  ppdisp
);

Parameters

pstrCode

[in] The procedure text to evaluate. The interpretation of this string depends on the scripting language.

pstrFormalParams

[in] Formal parameter names for the procedure. The parameter names must be separated with the appropriate delimiters for the scripting engine. The names should not be enclosed in parentheses.

pstrItemName

[in] The name of the named item that gives the context in which the procedure is to be evaluated. If this parameter is NULL, the code is evaluated in the scripting engine's global context.

punkContext

[in] The context object. This object is reserved for use in a debugging environment, where such a context may be provided by the debugger to represent an active run-time context. If this parameter is NULL, the engine uses pstrItemName to identify the context.

pstrDelimiter

[in] The end-of-procedure delimiter. When pstrCode is parsed from a stream of text, the host typically uses a delimiter, such as two single quotation marks (''), to detect the end of the procedure. This parameter specifies the delimiter that the host used, allowing the scripting engine to provide some conditional, primitive preprocessing (for example, replacing a single quotation mark ['] with two single quotation marks for use as a delimiter). Exactly how (and if) the scripting engine uses this information depends on the scripting engine. Set this parameter to NULL if the host did not use a delimiter to mark the end of the procedure.

dwSourceContextCookie

[in] Application-defined value that is used for debugging purposes.

ulStartingLineNumber

[in] Zero-based value that specifies at which line the parsing will begin.

dwFlags

[in] Flags associated with the procedure. Can be a combination of these values.

Constant Value Meaning

SCRIPTPROC_ISEXPRESSION

0x00000020

Indicates that the code in pstrCode is an expression that represents the return value of the procedure.

SCRIPTPROC_IMPLICIT_THIS

0x00000100

Indicates that the this pointer is included in the scope of the procedure.

SCRIPTPROC_IMPLICIT_PARENTS

0x00000200

Indicates that the parents of the this pointer are included in the scope of the procedure.

ppdisp

[out] Returns a dispatch wrapper where the default method is the procedure parsed by this method.

Expand imageReturn Value

Expand imageRemarks

Expand imageSee Also