Skip to content

Making 'mx javadoc --unified' part of the gate #15

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 25, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions mx.truffle/mx_truffle.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ def sldebug(args):
mx.run_java(vmArgs + ['-cp', mx.classpath("com.oracle.truffle.sl.tools"), "com.oracle.truffle.sl.tools.debug.SLREPL"] + slArgs)

def _truffle_gate_runner(args, tasks):
with Task('Truffle Javadoc', tasks) as t:
if t: mx.javadoc(['--unified'])
with Task('Truffle UnitTests', tasks) as t:
if t: unittest(['--suite', 'truffle', '--enable-timing', '--verbose', '--fail-fast'])
with Task('Truffle Signature Tests', tasks) as t:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ public static Layout createLayout() {
* @param objectType that describes the object instance with this shape.
* @param sharedData for language-specific use
* @param id for language-specific use
* @return new instance of a shape
*/
public abstract Shape createShape(ObjectType objectType, Object sharedData, int id);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ protected Property() {
/**
* Create a new property.
*
* @param key the key of the property
* @param location location of the property
* @param flags for language-specific use
* @return new instance of the property
*/
public static Property create(Object key, Location location, int flags) {
return Layout.getFactory().createProperty(key, location, flags);
Expand Down