Skip to content
Snippets Groups Projects
  1. Sep 26, 2012
  2. Jul 17, 2012
  3. Apr 20, 2012
  4. Mar 11, 2012
  5. Dec 06, 2011
  6. Sep 26, 2011
  7. Jul 18, 2011
  8. Jun 09, 2011
  9. Jun 06, 2011
  10. May 06, 2011
    • Adam Wardynski's avatar
      Change Position in Match data to be directly an int. · 6264ff5a
      Adam Wardynski authored
      This reflects the fact that positions stored in matches are
      absolute positions, while Position type is used in the
      language as position relative to current position in the
      sentence context. So mixing the two was confusing at the very least.
      This also actually fits the most recent version of spec,
      which no longer mentions Position, either.
      6264ff5a
  11. Apr 26, 2011
    • Adam Wardynski's avatar
      Fix MatchVector::first_token to ignore negative values. · 1270ffe8
      Adam Wardynski authored
      It was looking for minimum value and Position::Nowhere is
      the smallest you can get value-wise (min_int). So if there was
      an empty Match in a vector, first_token for the vector would
      always end up returning Position::Nowhere, which was wrong
      (empty submatches should've been ignored and Position::Nowhere
      returned only if there were no non-empty alternatives).
      1270ffe8
  12. Apr 21, 2011
  13. Apr 19, 2011
  14. Mar 11, 2011
  15. Mar 09, 2011
  16. Mar 03, 2011
  17. Feb 09, 2011
  18. Dec 10, 2010
  19. Dec 09, 2010
  20. Dec 08, 2010
  21. Nov 30, 2010
  22. Nov 29, 2010
    • ilor's avatar
      Make Position's default value be Nowhere · 6ae8cdbb
      ilor authored
      6ae8cdbb
    • ilor's avatar
      Variables class upgrades: · 5d08af7a
      ilor authored
      * reset_values function to set all Values to their defaul-construct state
      * read-only access to all variables of some type via get_all<T>
      * Variables cloning
      * convenience functions: get_or_throw, get_value
      Value subtypes now contain a value_type typedef and require a const value_type& get_value() const member function.
      5d08af7a