Added cc65_line_byspan and cc65_scope_byspan.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5230 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -204,6 +204,11 @@ const cc65_lineinfo* cc65_line_bysymref (cc65_dbginfo handle, unsigned symbol_id
|
||||
* returns NULL if the symbol id is invalid, otherwise a list of line infos.
|
||||
*/
|
||||
|
||||
const cc65_lineinfo* cc65_line_byspan (cc65_dbginfo handle, unsigned span_id);
|
||||
/* Return line information for a a span. The function returns NULL if the
|
||||
* span id is invalid, otherwise a list of line infos.
|
||||
*/
|
||||
|
||||
void cc65_free_lineinfo (cc65_dbginfo handle, const cc65_lineinfo* info);
|
||||
/* Free line info returned by one of the other functions */
|
||||
|
||||
@@ -535,6 +540,11 @@ const cc65_scopeinfo* cc65_scope_byname (cc65_dbginfo handle, const char* name);
|
||||
* the given name was found, otherwise a non empty scope list.
|
||||
*/
|
||||
|
||||
const cc65_scopeinfo* cc65_scope_byspan (cc65_dbginfo handle, unsigned span_id);
|
||||
/* Return scope information for a a span. The function returns NULL if the
|
||||
* span id is invalid, otherwise a list of line scopes.
|
||||
*/
|
||||
|
||||
const cc65_scopeinfo* cc65_childscopes_byid (cc65_dbginfo handle, unsigned id);
|
||||
/* Return the direct child scopes of a scope with a given id. The function
|
||||
* returns NULL if no scope with this id was found, otherwise a list of the
|
||||
|
||||
Reference in New Issue
Block a user