ILIAS  release_4-4 Revision
Comment.php
Go to the documentation of this file.
1 <?php
2 
7 {
8  public $data;
9  public $is_whitespace = true;
15  public function __construct($data, $line = null, $col = null) {
16  $this->data = $data;
17  $this->line = $line;
18  $this->col = $col;
19  }
20 }
21 
22 // vim: et sw=4 sts=4
__construct($data, $line=null, $col=null)
Transparent constructor.
Definition: Comment.php:15
$line
Line number node was on in source document.
Definition: Token.php:7
$data
Character data within comment.
Definition: Comment.php:8
Abstract base token class that all others inherit from.
Definition: Token.php:6
$col
Column of line node was on in source document.
Definition: Token.php:8
Concrete comment token class.
Definition: Comment.php:6