All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lt.compiler.Properties Maven / Gradle / Ivy

Go to download

The latte-lang compiler project, which contains compiler and runtime required library.

The newest version!
package lt.compiler;

/**
 * properties for the scanner
 */
public class Properties {
        /**
         * base of line numbers. all lines += _LINE_BASE_
         */
        public int _LINE_BASE_ = 0;
        /**
         * base of column numbers. all columns += _COLUMN_BASE_
         */
        public int _COLUMN_BASE_ = 0;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy