diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2009-09-27 16:23:08 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2009-09-27 16:23:08 -0700 |
commit | 46ffb85fe466efd9dbcac74612efeb4fbd89d96d (patch) | |
tree | 88e7751dd8f784340c8de425ab3c73fb9665c01e /lib | |
parent | 7940aebdce2f076230406333d977a9c4f3e1c753 (diff) | |
download | psych-46ffb85fe466efd9dbcac74612efeb4fbd89d96d.zip |
all events handled
Diffstat (limited to 'lib')
-rw-r--r-- | lib/psych/parser/handler.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/psych/parser/handler.rb b/lib/psych/parser/handler.rb index e2de6d8..8bfdb1a 100644 --- a/lib/psych/parser/handler.rb +++ b/lib/psych/parser/handler.rb @@ -51,6 +51,12 @@ module Psych end ### + # Called when an empty event happens. (Which, as far as I can tell, is + # never). + def empty + end + + ### # Called when the YAML stream ends def end_stream end |