Skip to content

Instantly share code, notes, and snippets.

@arcanis
Created June 14, 2013 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arcanis/5780938 to your computer and use it in GitHub Desktop.
Save arcanis/5780938 to your computer and use it in GitHub Desktop.
Résultat d'un `tree` sur Castel
.
└── castel
├── ast
│ ├── expr
│ │ ├── Binary.hh
│ │ ├── Conditional.hh
│ │ ├── External.hh
│ │ ├── literal
│ │ │ ├── Boolean.hh
│ │ │ ├── Class.hh
│ │ │ ├── Dict.hh
│ │ │ ├── Function.hh
│ │ │ ├── List.hh
│ │ │ ├── Null.hh
│ │ │ ├── Number.hh
│ │ │ ├── String.hh
│ │ │ └── Undefined.hh
│ │ ├── Multary.hh
│ │ ├── Unary.hh
│ │ └── Variable.hh
│ ├── Expression.hh
│ ├── Statement.hh
│ ├── stmt
│ │ ├── ctrl
│ │ │ ├── ForIn.hh
│ │ │ ├── If.hh
│ │ │ ├── Try.hh
│ │ │ ├── Until.hh
│ │ │ └── While.hh
│ │ ├── decl
│ │ │ ├── Class.hh
│ │ │ ├── Function.hh
│ │ │ └── Variables.hh
│ │ ├── Expression.hh
│ │ ├── Require.hh
│ │ ├── Return.hh
│ │ └── Throw.hh
│ ├── Token.hh
│ └── tools
│ ├── Linked.hh
│ └── Visitor.hh
├── lex
│ ├── Exception.hh
│ ├── Lexeme.hh
│ ├── Lexer.hh
│ └── types.def
└── parse
├── Exception.hh
└── Parser.hh
10 directories, 38 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment