wrapper.java
来自「javascript语言的解释器源码」· Java 代码 · 共 19 行
JAVA
19 行
package org.mozilla.javascript;/** * Objects that can wrap other values for reflection in the JS environment * will implement Wrapper. * * Wrapper defines a single method that can be called to unwrap the object. */public interface Wrapper { /** * Unwrap the object by returning the wrapped value. * * @return a wrapped value */ public Object unwrap();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?