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

smetana.core.debug.SmetanaDebug Maven / Gradle / Ivy

There is a newer version: 1.2024.8
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.

package smetana.core.debug;

import java.util.LinkedHashMap;
import java.util.Map;

public final class SmetanaDebug {
	// ::remove folder when __HAXE__
	static private final Map methods = new LinkedHashMap();

	static public void LOG(String s) {

	}

	static public void ENTERING(String signature, String methodName) {
//		if (methods.containsKey(methodName) == false)
//			methods.put(methodName, methodName);
	}

	static public void LIST_METHODS() {
		int i = 0;
		for (String s : methods.keySet()) {
			System.err.println("i=" + i + " " + s);
			i++;
		}
	}

	static public void LEAVING(String signature, String methodName) {
	}

	public static void reset() {
	}

	public static void printMe() {
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy