public static interface InboundMessage.CompileRequestOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
boolean |
getAlertAscii()
Whether to encode the formatted message of errors and logs in ASCII.
|
boolean |
getAlertColor()
Whether to use terminal colors in the formatted message of errors and
logs.
|
boolean |
getCharset()
Whether to emit a `@charset`/BOM for non-ASCII stylesheets.
|
String |
getGlobalFunctions(int index)
Signatures for custom global functions whose behavior is defined by the
host.
|
com.google.protobuf.ByteString |
getGlobalFunctionsBytes(int index)
Signatures for custom global functions whose behavior is defined by the
host.
|
int |
getGlobalFunctionsCount()
Signatures for custom global functions whose behavior is defined by the
host.
|
List<String> |
getGlobalFunctionsList()
Signatures for custom global functions whose behavior is defined by the
host.
|
InboundMessage.CompileRequest.Importer |
getImporters(int index)
Importers (including load paths on the filesystem) to use when resolving
imports that can't be resolved relative to the file that contains it.
|
int |
getImportersCount()
Importers (including load paths on the filesystem) to use when resolving
imports that can't be resolved relative to the file that contains it.
|
List<InboundMessage.CompileRequest.Importer> |
getImportersList()
Importers (including load paths on the filesystem) to use when resolving
imports that can't be resolved relative to the file that contains it.
|
InboundMessage.CompileRequest.ImporterOrBuilder |
getImportersOrBuilder(int index)
Importers (including load paths on the filesystem) to use when resolving
imports that can't be resolved relative to the file that contains it.
|
List<? extends InboundMessage.CompileRequest.ImporterOrBuilder> |
getImportersOrBuilderList()
Importers (including load paths on the filesystem) to use when resolving
imports that can't be resolved relative to the file that contains it.
|
InboundMessage.CompileRequest.InputCase |
getInputCase() |
String |
getPath()
A stylesheet loaded from the given path on the filesystem.
|
com.google.protobuf.ByteString |
getPathBytes()
A stylesheet loaded from the given path on the filesystem.
|
boolean |
getQuietDeps()
Whether to omit events for deprecation warnings coming from dependencies
(files loaded from a different importer than the input).
|
boolean |
getSilent()
Whether to silently suppresses all `LogEvent`s.
|
boolean |
getSourceMap()
Whether to generate a source map.
|
boolean |
getSourceMapIncludeSources()
Whether to include sources in the generated sourcemap
|
InboundMessage.CompileRequest.StringInput |
getString()
A stylesheet loaded from its contents.
|
InboundMessage.CompileRequest.StringInputOrBuilder |
getStringOrBuilder()
A stylesheet loaded from its contents.
|
OutputStyle |
getStyle()
How to format the CSS output.
|
int |
getStyleValue()
How to format the CSS output.
|
boolean |
getVerbose()
Whether to report all deprecation warnings or only the first few ones.
|
boolean |
hasPath()
A stylesheet loaded from the given path on the filesystem.
|
boolean |
hasString()
A stylesheet loaded from its contents.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
boolean hasString()
A stylesheet loaded from its contents.
.sass.embedded_protocol.InboundMessage.CompileRequest.StringInput string = 2;
InboundMessage.CompileRequest.StringInput getString()
A stylesheet loaded from its contents.
.sass.embedded_protocol.InboundMessage.CompileRequest.StringInput string = 2;
InboundMessage.CompileRequest.StringInputOrBuilder getStringOrBuilder()
A stylesheet loaded from its contents.
.sass.embedded_protocol.InboundMessage.CompileRequest.StringInput string = 2;
boolean hasPath()
A stylesheet loaded from the given path on the filesystem.
string path = 3;
String getPath()
A stylesheet loaded from the given path on the filesystem.
string path = 3;
com.google.protobuf.ByteString getPathBytes()
A stylesheet loaded from the given path on the filesystem.
string path = 3;
int getStyleValue()
How to format the CSS output.
.sass.embedded_protocol.OutputStyle style = 4;
OutputStyle getStyle()
How to format the CSS output.
.sass.embedded_protocol.OutputStyle style = 4;
boolean getSourceMap()
Whether to generate a source map. Note that this will *not* add a source map comment to the stylesheet; that's up to the host or its users.
bool source_map = 5;
List<InboundMessage.CompileRequest.Importer> getImportersList()
Importers (including load paths on the filesystem) to use when resolving imports that can't be resolved relative to the file that contains it. Each importer is checked in order until one recognizes the imported URL.
repeated .sass.embedded_protocol.InboundMessage.CompileRequest.Importer importers = 6;
InboundMessage.CompileRequest.Importer getImporters(int index)
Importers (including load paths on the filesystem) to use when resolving imports that can't be resolved relative to the file that contains it. Each importer is checked in order until one recognizes the imported URL.
repeated .sass.embedded_protocol.InboundMessage.CompileRequest.Importer importers = 6;
int getImportersCount()
Importers (including load paths on the filesystem) to use when resolving imports that can't be resolved relative to the file that contains it. Each importer is checked in order until one recognizes the imported URL.
repeated .sass.embedded_protocol.InboundMessage.CompileRequest.Importer importers = 6;
List<? extends InboundMessage.CompileRequest.ImporterOrBuilder> getImportersOrBuilderList()
Importers (including load paths on the filesystem) to use when resolving imports that can't be resolved relative to the file that contains it. Each importer is checked in order until one recognizes the imported URL.
repeated .sass.embedded_protocol.InboundMessage.CompileRequest.Importer importers = 6;
InboundMessage.CompileRequest.ImporterOrBuilder getImportersOrBuilder(int index)
Importers (including load paths on the filesystem) to use when resolving imports that can't be resolved relative to the file that contains it. Each importer is checked in order until one recognizes the imported URL.
repeated .sass.embedded_protocol.InboundMessage.CompileRequest.Importer importers = 6;
List<String> getGlobalFunctionsList()
Signatures for custom global functions whose behavior is defined by the host. If this is not a valid Sass function signature that could appear after `@function` in a Sass stylesheet (such as `mix($color1, $color2, $weight: 50%)`), or if it conflicts with a function name that's built into the Sass language, the compiler must treat the compilation as failed. Compilers must ensure that pure-Sass functions take precedence over custom global functions.
repeated string global_functions = 7;
int getGlobalFunctionsCount()
Signatures for custom global functions whose behavior is defined by the host. If this is not a valid Sass function signature that could appear after `@function` in a Sass stylesheet (such as `mix($color1, $color2, $weight: 50%)`), or if it conflicts with a function name that's built into the Sass language, the compiler must treat the compilation as failed. Compilers must ensure that pure-Sass functions take precedence over custom global functions.
repeated string global_functions = 7;
String getGlobalFunctions(int index)
Signatures for custom global functions whose behavior is defined by the host. If this is not a valid Sass function signature that could appear after `@function` in a Sass stylesheet (such as `mix($color1, $color2, $weight: 50%)`), or if it conflicts with a function name that's built into the Sass language, the compiler must treat the compilation as failed. Compilers must ensure that pure-Sass functions take precedence over custom global functions.
repeated string global_functions = 7;
index
- The index of the element to return.com.google.protobuf.ByteString getGlobalFunctionsBytes(int index)
Signatures for custom global functions whose behavior is defined by the host. If this is not a valid Sass function signature that could appear after `@function` in a Sass stylesheet (such as `mix($color1, $color2, $weight: 50%)`), or if it conflicts with a function name that's built into the Sass language, the compiler must treat the compilation as failed. Compilers must ensure that pure-Sass functions take precedence over custom global functions.
repeated string global_functions = 7;
index
- The index of the value to return.boolean getAlertColor()
Whether to use terminal colors in the formatted message of errors and logs.
bool alert_color = 8;
boolean getAlertAscii()
Whether to encode the formatted message of errors and logs in ASCII.
bool alert_ascii = 9;
boolean getVerbose()
Whether to report all deprecation warnings or only the first few ones. If this is `false`, the compiler may choose not to send events for repeated deprecation warnings. If this is `true`, the compiler must emit an event for every deprecation warning it encounters.
bool verbose = 10;
boolean getQuietDeps()
Whether to omit events for deprecation warnings coming from dependencies (files loaded from a different importer than the input).
bool quiet_deps = 11;
boolean getSourceMapIncludeSources()
Whether to include sources in the generated sourcemap
bool source_map_include_sources = 12;
boolean getCharset()
Whether to emit a `@charset`/BOM for non-ASCII stylesheets.
bool charset = 13;
boolean getSilent()
Whether to silently suppresses all `LogEvent`s.
bool silent = 14;
InboundMessage.CompileRequest.InputCase getInputCase()