Returns the source position of the argument at `arg`. `arg` is the logical argument index, matching the `N` in `scope.get_*(N)`.
(&self, arg: u8)
| 956 | /// |
| 957 | /// `arg` is the logical argument index, matching the `N` in `scope.get_*(N)`. |
| 958 | pub fn get_pos(&self, arg: u8) -> LineCol { |
| 959 | self.arg_linecols[usize::from(arg)] |
| 960 | } |
| 961 | |
| 962 | /// Gets the type tag of the argument at `arg`. |
| 963 | pub fn get_type(&self, arg: u8) -> VarArgTag { |
no outgoing calls