Files
bison/tests
Akim Demaille cb8d8bb9b6 value type: accept "->" in type tags
Provide a means to dereference pointers when defining tags.  One
example could be:

  %code requires
  {
    typedef struct ListElementType
    {
      union value
      {
        int intVal;
        float floatVal;
        char* charptrVal;
      } value;

      struct ListElementType* next;
    } ListElementType;
  }

  %union
  {
    ListElementType* list;
  }

  %token <list->value.charptrVal> STRING
  %token <list->value.intVal> INTEGER
  %token <list->value.floatVal> REAL
  %type <list> ElementList LiteralType

* src/scan-code.l, src/scan-gram.l: Accept "->" in tags.
* tests/types.at: Add more test cases to cover this case.
2013-04-09 14:07:51 +02:00
..
2008-11-16 19:46:16 +01:00
2013-02-18 10:01:28 +01:00
2013-02-18 10:01:28 +01:00
2013-01-12 16:14:16 +01:00
2013-02-18 10:01:28 +01:00
2013-02-18 10:01:28 +01:00
2013-01-12 16:14:16 +01:00
2013-02-18 10:01:27 +01:00
2013-02-18 10:01:28 +01:00
2013-02-18 10:01:28 +01:00
2013-04-09 14:07:51 +02:00