~ubuntu-branches/ubuntu/trusty/c++-annotations/trusty

« back to all changes in this revision

Viewing changes to yo/concrete/addtypes.yo

  • Committer: Package Import Robot
  • Author(s): tony mancill, Frank B. Brokken, tony mancill
  • Date: 2012-02-28 00:50:21 UTC
  • mfrom: (1.1.19)
  • Revision ID: package-import@ubuntu.com-20120228005021-sz7nnodntkvgh7qf
Tags: 9.2.1-1
[ Frank B. Brokken ]
* New upstream release (using flexc++, reauthored polymorphic semantic
  values and unrestricted unions). Upstream release 9.2.0 is implied by
  this release.

[ tony mancill ]
* Set Standards-Version to 3.9.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
These are the steps to take when another semantic data type must be added to
 
2
an existing set:
 
3
    itemization(
 
4
    it() Add a tag name representing the new semantic value type to the
 
5
tt(enum class Tag) (section ref(TAG));
 
6
    it() Add a specialization to the tt(TagTrait) trait class (section
 
7
ref(TAGTRAIT)) defining the added semantic value's data type, and whether or
 
8
not the data on the parser's semantic stack should be considered (im)mutable.
 
9
    )