PetitCommonMark/software/PetitMarkdown/PPCMInlinedCode.class.st

29 lines
442 B
Smalltalk

Class {
#name : 'PPCMInlinedCode',
#superclass : 'PPCMNode',
#instVars : [
'code'
],
#category : 'PetitMarkdown-AST'
}
{ #category : 'visiting' }
PPCMInlinedCode >> accept: visitor [
^ visitor visitInlinedCode: self
]
{ #category : 'accessing' }
PPCMInlinedCode >> code [
^ code
]
{ #category : 'accessing' }
PPCMInlinedCode >> code: anObject [
code := anObject
]
{ #category : 'accessing' }
PPCMInlinedCode >> text [
^ code
]