2017-07-12 09:19:07 -04:00
|
|
|
! Copyright (C) 2017 Björn Lindqvist.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
|
|
USING: help.markup help.syntax ;
|
|
|
|
IN: llvm.wrappers
|
|
|
|
|
|
|
|
HELP: <provider>
|
|
|
|
{ $values { "module" module } { "provider" provider } }
|
|
|
|
{ $description "Creates a module provider from a given module. The provider takes ownership of the module." } ;
|
2017-07-14 19:22:12 -04:00
|
|
|
|
|
|
|
HELP: <engine>
|
|
|
|
{ $values { "module" module } { "engine" engine } }
|
|
|
|
{ $description "Creates a engine from a given module. The engine takes ownership of the module and disposes it." } ;
|