The R Project SVN R

Rev

Rev 34855 | Rev 68551 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 34855 Rev 41621
Line 29... Line 29...
29
##- Date: 2 Sep 1999
29
##- Date: 2 Sep 1999
30
 
30
 
31
## The first failed in 0.65.0 :
31
## The first failed in 0.65.0 :
32
attach(list(x=1))
32
attach(list(x=1))
33
evalq(dim(x) <- 1,as.environment(2))
33
evalq(dim(x) <- 1,as.environment(2))
34
dput(get("x", env=as.environment(2)), control="all")
34
dput(get("x", envir=as.environment(2)), control="all")
35
 
35
 
36
e <- local({x <- 1;environment()})
36
e <- local({x <- 1;environment()})
37
evalq(dim(x) <- 1,e)
37
evalq(dim(x) <- 1,e)
38
dput(get("x",env=e), control="all")
38
dput(get("x",envir=e), control="all")
39
 
39
 
40
### Substitute, Eval, Parse, etc
40
### Substitute, Eval, Parse, etc
41
 
41
 
42
## PR#3 : "..." matching
42
## PR#3 : "..." matching
43
## Revised March 7 2001 -pd
43
## Revised March 7 2001 -pd