Polyman Documentation - v2.2.2
    Preparing search index...

    Interface LocalGenerator

    Local generator configuration. Generators are treated as source files that can be invoked by test generation scripts.

    LocalGenerator

    {
    * name: 'gen-random',
    * source: './generators/random.cpp',
    * sourceType: 'cpp.g++17'
    * }
    interface LocalGenerator {
        name: string;
        source: string;
        sourceType?: CppSourceType;
    }
    Index

    Properties

    name: string

    Generator name/identifier

    source: string

    Path to generator source file (must be C++)

    sourceType?: CppSourceType

    C++ compiler version (generators must use testlib.h)