Class: Rexle::Comment

Inherits:
Object
  • Object
show all
Defined in:
lib/rexle.rb

Instance Method Summary collapse

Constructor Details

#initialize(val = '') ⇒ Comment

Returns a new instance of Comment.



1330
1331
1332
# File 'lib/rexle.rb', line 1330

def initialize(val='')
  @value = val
end

Instance Method Details

#inspectObject



1334
1335
1336
# File 'lib/rexle.rb', line 1334

def inspect()
  @value
end


1338
1339
1340
# File 'lib/rexle.rb', line 1338

def print()
  "<!--%s-->" % @value
end

#to_sObject



1342
1343
1344
# File 'lib/rexle.rb', line 1342

def to_s()
  @value
end