vicuna-compiler 0.1.1

A compiler for the Vicuna programming language
Documentation
---
source: crates/vicuna-compiler/src/parser.rs
expression: "stmt().parse(r#\"import { foo, bar } from \"./baz\";\"#)"
---
Ok:
  - Import:
      ty:
        - Internal
        - start: 7
          end: 8
      default_import: ~
      named_imports:
        - - foo
          - start: 8
            end: 12
        - - bar
          - start: 13
            end: 18
      path:
        - "./baz"
        - start: 25
          end: 32
  - start: 0
    end: 33