LispInSmallPieces/chapter1/reader_types.coffee

9 lines
135 B
CoffeeScript

exports.Node = class
constructor: (@type, @value, @line, @column) ->
exports.Comment = class
constructor: (@text) ->