public static Node<Object> kvs_extend(String key, Object value, Node<Object> scope) { return new Node<Object>(key, new Node<Object>(value, scope)); }
/**************************һЩ¿âº¯Êý********************************/ public static Node<T> extend(T value, Node<T> scope) { return new Node<T>(value, scope); }