22 lines
394 B
Smalltalk
22 lines
394 B
Smalltalk
Class {
|
|
#name : 'PPCMListItem',
|
|
#superclass : 'PPCMDelegateNode',
|
|
#category : 'PetitMarkdown-AST'
|
|
}
|
|
|
|
{ #category : 'visiting' }
|
|
PPCMListItem >> accept: visitor [
|
|
^ visitor visitListItem: self
|
|
]
|
|
|
|
{ #category : 'as yet unclassified' }
|
|
PPCMListItem >> initialize [
|
|
super initialize.
|
|
children := Array new: 1.
|
|
]
|
|
|
|
{ #category : 'as yet unclassified' }
|
|
PPCMListItem >> isBlockLevel [
|
|
^ true
|
|
]
|