Skip to content
This repository has been archived by the owner on Aug 24, 2020. It is now read-only.

Commit

Permalink
Fix for patch 3c4098a
Browse files Browse the repository at this point in the history
Forgot to update BBType to use new methods.
  • Loading branch information
nilium committed Mar 24, 2009
1 parent 1c8e19d commit 1b54060
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions bbtype.rb
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,14 @@ def process()
self.endingLineNumber = lineNumber
return
elsif BBRegex::DOC_REGEX.match(line) then
@inDocComment = true
page.beginDocComment()

doc = BBDoc.new(line, lineNumber, self)
doc.process()

page.endDocComment()
page.addElement(doc)
@inDocComment = false

lastDoc = doc
elsif funcRegex.match(line) then
newElem = method = BBMethod.new(line, lineNumber, self, page, extern?, private?)
Expand Down

0 comments on commit 1b54060

Please sign in to comment.