Syntactic sugar to instantiate a `VarRef` without an explicit type annotation.
(name: &str)
| 864 | |
| 865 | /// Syntactic sugar to instantiate a `VarRef` without an explicit type annotation. |
| 866 | fn new_auto_symbol(name: &str) -> Token { |
| 867 | Token::Symbol(VarRef::new(name, None)) |
| 868 | } |
| 869 | |
| 870 | #[test] |
| 871 | fn test_some_tokens() { |
no outgoing calls