oga/spec
Yorick Peterse 07b52fb48a Added Ruby::Node#not
This is a shortcut for "!foo". Using this method one doesn't have to
worry about how the "!" operator binds. For example, this:

    !foo.or(bar)

would be parsed/evaluated as this:

    !(foo.or(bar))

when instead we want it to be this:

    (!foo).or(bar)

Using explicit parenthesis leads to ugly code, so now we can do this
instead:

    foo.not.or(bar)
2015-08-19 20:14:22 +02:00
..
oga Added Ruby::Node#not 2015-08-19 20:14:22 +02:00
support Use the XPath compiler for XPath/CSS specs 2015-08-19 20:14:20 +02:00
spec_helper.rb Added thread-safe LRU class 2015-03-23 00:21:52 +01:00