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

        public static Node<T> extend(T value, Node<T> scope)
        {
            return new Node<T>(value, scope);
        }