mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
7 lines
227 B
Rust
7 lines
227 B
Rust
use trustfall::provider::{ResolveInfo, VertexIterator};
|
|
|
|
use super::vertex::Vertex;
|
|
|
|
pub(super) fn file<'a, 'b: 'a>(_resolve_info: &ResolveInfo) -> VertexIterator<'a, Vertex<'b>> {
|
|
Box::new(std::iter::once(Vertex::File))
|
|
}
|