More work towards instanced parser

This commit is contained in:
ridiculousfish
2012-01-20 11:24:43 -08:00
parent 3d8face1f9
commit 7e486e3b5c
7 changed files with 38 additions and 46 deletions

View File

@@ -428,29 +428,6 @@ typedef struct
wchar_t *cmd;
} profile_element_t;
struct profile_item_t {
/**
Time spent executing the specified command, including parse time for nested blocks.
*/
int exec;
/**
Time spent parsing the specified command, including execution time for command substitutions.
*/
int parse;
/**
The block level of the specified command. nested blocks and command substitutions both increase the block level.
*/
int level;
/**
If the execution of this command was skipped.
*/
int skipped;
/**
The command string.
*/
wcstring cmd;
};
/**
Return the current number of block nestings
*/