Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 1.6 KB

File metadata and controls

49 lines (40 loc) · 1.6 KB

Moose version Moose version Build Info Coverage Status

Famix-ExecutionFlow

Metamodel to represent static or dynamic callgraphs.

  • Travel the graph along XPath axes: ancestors, descendants, preceding and following siblings.
  • Represent indirect calls, where the path between two calls is unknown.
  • Represent values used in calls with Famix-Value: receiver, arguments, and result.

Installation

Standalone:

Metacello new
  githubUser: 'moosetechnology' project: 'Famix-ExecutionFlow' commitish: 'main' path: 'src';
  baseline: 'FamixExecutionFlow';
  onConflictUseIncoming;
  load

As a dependency:

spec
  baseline: 'FamixExecutionFlow'
  with: [ spec repository: 'github://moosetechnology/Famix-ExecutionFlow:main/src' ]

With Values

Standalone:

Metacello new
  githubUser: 'moosetechnology' project: 'Famix-ExecutionFlow' commitish: 'main' path: 'src';
  baseline: 'FamixExecutionFlow';
  onConflictUseIncoming;
  load: 'value'

As a dependency:

spec baseline: 'FamixExecutionFlow' with: [
  spec
    repository: 'github://moosetechnology/Famix-ExecutionFlow:main/src';
    loads: 'value' ]