vala/valacodecontext.vala vala/valasourcefile.vala filename, line, and
authorJürg Billeter <j@bitron.ch>
Sat, 6 May 2006 23:16:17 +0000 (23:16 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Sat, 6 May 2006 23:16:17 +0000 (23:16 +0000)
commite4904cceac6a956940838eab8a91e9814a40c507
treef5dd8b85e13a8e7284184643f9363c7fd49738fe
parentc300d9c3d0af08f628b6c260bdd32f431a47e0f2
vala/valacodecontext.vala vala/valasourcefile.vala filename, line, and

2006-05-06  Jürg Billeter  <j@bitron.ch>

* vala/valacodecontext.vala
* vala/valasourcefile.vala
* vala/valasourcereference.vala: filename, line, and comment container
* vala/valacodenode.vala: abstract code node
* vala/valanamespace.vala: namespace node
* vala/valaclass.vala: class node
* vala/valacodevisitor.vala: abstract syntax tree visitor
* vala/valaparser.vala: vala parser
* vala/valacodegenerator.vala: code generator skeleton
* compiler/valacompiler.vala: compiler driver
* bindings/GLib.vala: add bindings for GList and GOptionContext
* valac/scanner.l: support multi-line comments, ABSTRACT, INTERFACE,
  READONLY
* valac/parser.y: replace AT by HASH, support readonly fields
* valac/context.h: small fixes
* valac/context.c: small fixes
* valac/generator.c: fix override methods, basic support for properties

svn path=/trunk/; revision=13
17 files changed:
vala/ChangeLog
vala/bindings/GLib.vala [new file with mode: 0644]
vala/compiler/valacompiler.vala [new file with mode: 0644]
vala/vala/valaclass.vala [new file with mode: 0644]
vala/vala/valacodecontext.vala [new file with mode: 0644]
vala/vala/valacodegenerator.vala [new file with mode: 0644]
vala/vala/valacodenode.vala [new file with mode: 0644]
vala/vala/valacodevisitor.vala [new file with mode: 0644]
vala/vala/valanamespace.vala [new file with mode: 0644]
vala/vala/valaparser.vala [new file with mode: 0644]
vala/vala/valasourcefile.vala [new file with mode: 0644]
vala/vala/valasourcereference.vala [new file with mode: 0644]
vala/valac/context.c
vala/valac/context.h
vala/valac/generator.c
vala/valac/parser.y
vala/valac/scanner.l