Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Errors parsing #if/#else statements #4

Closed
bdemick opened this issue Mar 21, 2022 · 0 comments
Closed

Errors parsing #if/#else statements #4

bdemick opened this issue Mar 21, 2022 · 0 comments

Comments

@bdemick
Copy link

bdemick commented Mar 21, 2022

I'm attempting to use tree-sitter as the parser for a project, and running into some issues where #if/#elif/#else/#endif directives exist. One of the particular code patterns that seems to throw things off is (ignore the nonsensical logic, this is syntactically correct):

char global_buf[256] = {};

int test_func(int sz, int* dst)
{
    int eReturn;
#if( USE_INSECURE == 1 )
	if( *global_buf != dst )
	{
		memcpy( dst, global_buf, sz );
		eReturn = -1;
	}
	else
#else
    if( *global_buf != dst )
	{
		memcpy_s( dst, global_buf, sz );
		eReturn = -4;
	}
	else
#endif
	if( dst != '\0' )
	{
		memcpy( dst, global_buf, sz );
		eReturn = 0;
	}
	else if( *(global_buf + 4) == 0UL )
	{
		eReturn = -3;
	}
	else
	{
		eReturn = -2;
        }
    return eReturn;
}

The XML output for tree-sitter-parser.py has an ERROR node in the resulting AST at the two else nodes within the #if directives, which causes the subsequent GumTreeDiff tree generation to fail. The cgum and srcML parsers seem to handle these just fine so I'm assuming there's something not handled correctly in the tree-sitter-to-XML conversion.

Update: Didn't think to look in the tree-sitter-c repo first, and it looks like this may be a known issue: tree-sitter/tree-sitter-c#70

Closing since it's clearly not an issue with the XML generation wrapper.

@bdemick bdemick closed this as completed Mar 21, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant