LispInSmallPieces/chapter1/reader_types.coffee

12 lines
189 B
CoffeeScript

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