Update Environment.html

This commit is contained in:
谢桂纲 2024-04-27 22:11:30 +08:00
parent 40e880d0b0
commit 103658b94d
1 changed files with 3 additions and 3 deletions

View File

@ -22,8 +22,9 @@
<h3>Description</h3>
<p>A <code>R#</code> scripting runtime context.
(在一个环境对象容器之中,所有的对象都是以变量来表示的)</p>
<p>A <code>R#</code> scripting runtime context.</p>
<p>(在一个环境对象容器之中,所有的对象都是以变量来表示的)</p>
<h3>Declare</h3>
@ -36,7 +37,6 @@ export class Environment {
# the global environment
globalEnvironment: <a href="/vignettes/clr/SMRUCC/Rsharp/Runtime/GlobalEnvironment.html">GlobalEnvironment</a>;
# It is the top level global environment?
# (当前的环境是否为最顶层的全局环境?)
isGlobal: boolean;
isLINQContext: boolean;
# get value of the special last variable in R# <a href="/vignettes/clr/SMRUCC/Rsharp/Runtime/Environment.html">Environment</a>