summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2009-09-27 16:13:53 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2009-09-27 16:13:53 -0700
commit7940aebdce2f076230406333d977a9c4f3e1c753 (patch)
treea5cc84c868f17d588bd70751fa07ee676d476b5e /lib
parentb3f313df01662174db059176a6159fda80e68166 (diff)
downloadpsych-7940aebdce2f076230406333d977a9c4f3e1c753.zip
end mapping event handled
Diffstat (limited to 'lib')
-rw-r--r--lib/psych/parser/handler.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/psych/parser/handler.rb b/lib/psych/parser/handler.rb
index 1be1dd2..e2de6d8 100644
--- a/lib/psych/parser/handler.rb
+++ b/lib/psych/parser/handler.rb
@@ -40,10 +40,17 @@ module Psych
def end_sequence
end
+ ###
+ # Called when a map starts
def start_mapping anchor = nil, tag = nil, implicit = true, style = BLOCK_MAPPING_STYLE
end
###
+ # Called when a map ends
+ def end_mapping
+ end
+
+ ###
# Called when the YAML stream ends
def end_stream
end