Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/BehaviorTree/BehaviorTree.CPP
/ parseStatements
Function
parseStatements
src/script_parser.cpp:421–426 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
419
};
420
421
std::vector<Ast::expr_ptr> parseStatements(const std::string& script)
422
{
423
auto tokens = tokenize(script);
424
ScriptParser parser(std::move(tokens));
425
return parser.parseAll();
426
}
427
428
} // namespace Scripting
429
Callers
3
ParseScript
Function · 0.85
ValidateScript
Function · 0.85
GetScriptResult
Function · 0.85
Calls
3
tokenize
Function · 0.85
move
Function · 0.85
parseAll
Method · 0.80
Tested by
1
GetScriptResult
Function · 0.68