Struct starlark::syntax::AstModule

source ·
pub struct AstModule { /* private fields */ }
Expand description

A representation of a Starlark module abstract syntax tree.

Created with either parse or parse_file, and evaluated with eval_module.

The internal details (statements/expressions) are deliberately omitted, as they change more regularly. A few methods to obtain information about the AST are provided.

Implementations§

source§

impl AstModule

source

pub fn exported_symbols<'a>(&'a self) -> Vec<Symbol<'a>>

Which symbols are exported by this module. These are the top-level assignments, including function definitions. Any symbols that start with _ are not exported.

source§

impl AstModule

source

pub fn find_function_call_with_name(&self, name: &str) -> Option<ResolvedSpan>

Find the location of a top level function call that has a kwarg “name”, and a string value matching name.

NOTE: If the AST is exposed in the future, this function may be removed and implemented by specific programs instead.

source§

impl AstModule

source

pub fn lint(&self, globals: Option<&HashSet<String>>) -> Vec<Lint>

Run a static linter over the module. If the complete set of global variables are known they can be passed as the globals argument, resulting in name-resolution lint errors. The precise checks run by the linter are not considered stable between versions.

source§

impl AstModule

source

pub fn stmt_locations(&self) -> Vec<FileSpan>

Locations where statements occur.

source§

impl AstModule

source

pub fn typecheck( self, oracle: &dyn TypingOracle, loads: &HashMap<String, Interface> ) -> (Vec<Error>, TypeMap, Interface, Vec<Approximation>)

Typecheck a module

source§

impl AstModule

source

pub fn parse_file(path: &Path, dialect: &Dialect) -> Result<Self>

Parse a file stored on disk. For details see parse.

source

pub fn parse(filename: &str, content: String, dialect: &Dialect) -> Result<Self>

Parse a Starlark module to produce an AstModule, or an error if there are syntax errors. The filename is for error messages only, and does not have to be a valid file. The Dialect selects which Starlark constructs are valid.

Errors will be reported using the Diagnostic type. For example:

use starlark::syntax::{AstModule, Dialect};
use starlark::errors::Diagnostic;

let err: anyhow::Error = AstModule::parse("filename", "\n(unmatched".to_owned(), &Dialect::Standard).unwrap_err();
let err: Diagnostic = err.downcast::<Diagnostic>().unwrap();
assert_eq!(err.span.unwrap().to_string(), "filename:2:11");
source

pub fn loads(&self) -> Vec<AstLoad<'_>>

Return the file names of all the load statements in the module. If the Dialect had enable_load set to false this will be an empty list.

Trait Implementations§

source§

impl Debug for AstModule

source§

fn fmt(&self, __f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.