pub fn parse_import_decl(input: &str) -> Option<ImportDecl>Expand description
Parse a single import line.
Supported syntaxes:
import Mathlib.Algebra.Ringimport Mathlib.Algebra.Ring as MARimport Mathlib.Algebra.Ring (add, mul)
Returns None if the line does not start with import or the module path
is malformed.