oxilean-parse 0.1.2

OxiLean parser - Concrete syntax to abstract syntax
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # CommandParser - position_group Methods
//!
//! This module contains method implementations for `CommandParser`.
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)

use super::commandparser_type::CommandParser;

impl CommandParser {
    /// Get the current position.
    pub fn position(&self) -> usize {
        self.pos
    }
}