I am writing a codeqlquery to flag goto statements. Query: ``` from Gotostmt gt select gt, “ use of goto statement” ``` Now this query is returning results `goto` keywords as well as `__leave` keyword Which it should not. Can someone guide how to handle this false positive.