refactor: Move scope and binding types to scope.rs (#3573)

This commit is contained in:
Micha Reiser 2023-03-17 17:31:33 +01:00 committed by GitHub
parent 92179e6369
commit dedf4cbdeb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
36 changed files with 535 additions and 507 deletions

View file

@ -15,8 +15,9 @@ use smallvec::{smallvec, SmallVec};
use crate::context::Context;
use crate::newlines::StrExt;
use crate::scope::{Binding, BindingKind};
use crate::source_code::{Generator, Indexer, Locator, Stylist};
use crate::types::{Binding, BindingKind, CallPath, Range};
use crate::types::{CallPath, Range};
use crate::visitor;
use crate::visitor::Visitor;