Specifies the types of nodes to exclude when filtering code documents. Used in IDebugApplicationNode100::GetExcludedDocuments and IDebugApplicationNode100::SetFilterForEventSink
Important |
---|
These constants are implemented by PDM v10.0 and greater. Found in activdbg100.h. |
typedef enum tagAPPLICATION_NODE_EVENT_FILTER { FILTER_EXCLUDE_NOTHING = 0, FILTER_EXCLUDE_ANONYMOUS_CODE = 0x1, FILTER_EXCLUDE_EVAL_CODE = 0x2} APPLICATION_NODE_EVENT_FILTER;
Member | Value | Description |
---|---|---|
FILTER_EXCLUDE_NOTHING | 0x00000000 | Send all events. |
FILTER_EXCLUDE_ANONYMOUS_CODE | 0x00000001 | Exclude anonymous code nodes. These nodes are used by the JScript runtime for new Function([args,] <code>)'. |
FILTER_EXCLUDE_EVAL_CODE | 0x00000002 | Exclude eval code nodes. These nodes are used by the JScript runtime for eval support. |