use crateParseError;
use crateParseErrorType;
/// Convert from from the starting line and remaining line into parse error
///
/// # Arguments
///
/// * `starting_line` - The line before any parsing
/// * `line` - The line remaining after any successful parsing
/// * `line_number` - What line number this line is (used for error reporting)
///
/// Extracts a syntax error from the starting string and string after parsing.
///
/// # Arguments
///
/// * `starting_line` - The line before any parsing
/// * `line` - The line remaining after any successful parsing
///