File: NumericToken.java

package info (click to toggle)
liblessen-java 1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 276 kB
  • sloc: java: 2,981; xml: 31; makefile: 5
file content (11 lines) | stat: -rw-r--r-- 258 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
package com.metaweb.lessen.tokens;

public class NumericToken extends Token {
    final public Number n;
    
    public NumericToken(Type type, int start, int end, String text, Number n) {
        super(type, start, end, text);
        this.n = n;
    }

}