⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 icompilerapi.java

📁 Python Development Environment (Python IDE plugin for Eclipse). Features editor, code completion, re
💻 JAVA
字号:
/*
 * Author: atotic
 * Created: Jul 29, 2003
 */
package org.python.pydev.parser.jython;

/**
 * callbacks from the parser to the compiler
 *
 * org.totic.pydev needed to use org.python.parser outside of the the jython tree
 * and this class abstracts all calls from parser to the compiler
 */

public interface ICompilerAPI {

	public Object newLong(String s);

	public Object newLong(java.math.BigInteger i);

	public Object newFloat(double v);
	
	public Object newImaginary(double v);
	
	public Object newInteger(int i);
	
	public String decode_UnicodeEscape(String str, int start, int end,
		String errors, boolean unicode);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -