Open
Conversation
|
Codecov Report❌ Patch coverage is
... and 27 files with indirect coverage changes 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
InterpreterクラスのexecメソッドおよびexecSyncメソッドにオーバーロードを追加しました。第2引数に以下のプロパティをもつオブジェクトを渡すことができるようになります。
第2引数が渡された場合、渡されたオブジェクトと同名のプロパティをもつオブジェクトを返すようになります。
value:trueの場合、返値に最後に評価された式の値を含みます。falseの場合は返値にこの値を含みません。variablesプロパティ:trueの場合、返値にグローバルスコープの全ての変数の値を含みます。文字列の配列である場合、指定された名前をもつ変数の値を含みます。falseの場合は返値にこの値を含みません。Why
#1028
Scopeに代わるグローバル変数の読み出し方法としてAdditional info (optional)
valueプロパティを追加したため、#1028 に出した案とシグネチャが異なります。