diff --git a/derive/src/compile_bytecode.rs b/derive/src/compile_bytecode.rs index bca2e76213..43d84c7705 100644 --- a/derive/src/compile_bytecode.rs +++ b/derive/src/compile_bytecode.rs @@ -32,8 +32,11 @@ static CARGO_MANIFEST_DIR: Lazy = Lazy::new(|| { }); enum CompilationSourceKind { + /// Source is a File (Path) File(PathBuf), + /// Direct Raw sourcecode SourceCode(String), + /// Source is a directory Dir(PathBuf), }