mirror of
https://github.com/github/codeql.git
synced 2026-05-01 03:35:13 +02:00
Use private imports in generated code
This commit is contained in:
@@ -9,7 +9,7 @@ pub enum TopLevel<'a> {
|
||||
impl<'a> fmt::Display for TopLevel<'a> {
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
match self {
|
||||
TopLevel::Import(x) => write!(f, "import {}", x),
|
||||
TopLevel::Import(x) => write!(f, "private import {}", x),
|
||||
TopLevel::Class(cls) => write!(f, "{}", cls),
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user