Package org.openquark.cal.compiler.SourceModelCodeFormatter

Examples of org.openquark.cal.compiler.SourceModelCodeFormatter.Options


    public Void visit_CALDoc_TextSegment_InlineTag_URL(
            CALDoc.TextSegment.InlineTag.URL segment, Options options) {

        SourceModel.verifyArg(segment, "segment");

        Options info = options;

        sb.append("{@url ");

        beginAtomicCalDocItem();
        segment.getContent().accept(this, info);
View Full Code Here


    public Void visit_CALDoc_TextSegment_InlineTag_List_Item(
            CALDoc.TextSegment.InlineTag.List.Item item, Options options) {

        SourceModel.verifyArg(item, "item");

        Options info = options;

        emitCalDocText("{@item ", options);

        int itemStart = sb.length();
View Full Code Here

    public Void visit_CALDoc_TaggedBlock_See_Function(
            CALDoc.TaggedBlock.See.Function function, Options options) {

        SourceModel.verifyArg(function, "function");

        Options info = options;
        ensureOnNewLine();
        sb.append(CALDoc.TaggedBlock.See.SEE_TAG).append(
                " function = ");
        function.getNthFunctionName(0).accept(this, info);
View Full Code Here

    public Void visit_CALDoc_TaggedBlock_See_Module(
            CALDoc.TaggedBlock.See.Module module, Options options) {

        SourceModel.verifyArg(module, "module");

        Options info = options;

        ensureOnNewLine();
        sb.append(CALDoc.TaggedBlock.See.SEE_TAG).append(
                " module = ");
        module.getNthModuleName(0).accept(this, info);
View Full Code Here

    public Void visit_CALDoc_TaggedBlock_See_TypeCons(
            CALDoc.TaggedBlock.See.TypeCons typeCons, Options options) {

        SourceModel.verifyArg(typeCons, "typeCons");

        Options info = options;

        ensureOnNewLine();
        sb.append(CALDoc.TaggedBlock.See.SEE_TAG).append(
                " typeConstructor = ");
        typeCons.getNthTypeConsName(0).accept(this, info);
View Full Code Here

     * @return null
     */
    public Void visit_CALDoc_TaggedBlock_See_DataCons(
            CALDoc.TaggedBlock.See.DataCons dataCons, Options options) {

        Options info = options;

        ensureOnNewLine();
        sb.append(CALDoc.TaggedBlock.See.SEE_TAG).append(
                " dataConstructor = ");
        dataCons.getNthDataConsName(0).accept(this, info);
View Full Code Here

    public Void visit_CALDoc_TaggedBlock_See_TypeClass(
            CALDoc.TaggedBlock.See.TypeClass typeClass, Options options) {

        SourceModel.verifyArg(typeClass, "typeClass");

        Options info = options;

        ensureOnNewLine();
        sb.append(CALDoc.TaggedBlock.See.SEE_TAG).append(
                " typeClass = ");
        typeClass.getNthTypeClassName(0).accept(this, info);
View Full Code Here

TOP

Related Classes of org.openquark.cal.compiler.SourceModelCodeFormatter.Options

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.