Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QueryR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Lopez
QueryR
Commits
0ba42db4
Commit
0ba42db4
authored
7 years ago
by
Lukas Stadler
Browse files
Options
Downloads
Patches
Plain Diff
small cleanup and version change in TruffleRLanguageImpl
parent
68c73927
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
com.oracle.truffle.r.engine/src/com/oracle/truffle/r/engine/TruffleRLanguageImpl.java
+1
-5
1 addition, 5 deletions
...src/com/oracle/truffle/r/engine/TruffleRLanguageImpl.java
with
1 addition
and
5 deletions
com.oracle.truffle.r.engine/src/com/oracle/truffle/r/engine/TruffleRLanguageImpl.java
+
1
−
5
View file @
0ba42db4
...
...
@@ -64,11 +64,7 @@ import com.oracle.truffle.r.runtime.ffi.RFFIFactory;
import
com.oracle.truffle.r.runtime.nodes.RBaseNode
;
import
com.oracle.truffle.r.runtime.nodes.RSyntaxNode
;
/**
* Only does the minimum for running under the debugger. It is not completely clear how to correctly
* integrate the R startup in {@code RCommand} with this API.
*/
@TruffleLanguage
.
Registration
(
name
=
"R"
,
id
=
"R"
,
version
=
"0.1"
,
mimeType
=
{
RRuntime
.
R_APP_MIME
,
RRuntime
.
R_TEXT_MIME
},
interactive
=
true
)
@TruffleLanguage
.
Registration
(
name
=
"R"
,
id
=
"R"
,
version
=
"3.3.2"
,
mimeType
=
{
RRuntime
.
R_APP_MIME
,
RRuntime
.
R_TEXT_MIME
},
interactive
=
true
)
@ProvidedTags
({
StandardTags
.
CallTag
.
class
,
StandardTags
.
StatementTag
.
class
,
StandardTags
.
RootTag
.
class
,
RSyntaxTags
.
LoopTag
.
class
})
public
final
class
TruffleRLanguageImpl
extends
TruffleRLanguage
implements
ScopeProvider
<
RContext
>
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment