public static interface EmbeddedSass.OutboundMessage.CompileResponse.CompileSuccessOrBuilder extends MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
String |
getCss()
The compiled CSS.
|
ByteString |
getCssBytes()
The compiled CSS.
|
String |
getLoadedUrls(int index)
The canonical URLs of all source files loaded during the compilation.
|
ByteString |
getLoadedUrlsBytes(int index)
The canonical URLs of all source files loaded during the compilation.
|
int |
getLoadedUrlsCount()
The canonical URLs of all source files loaded during the compilation.
|
List<String> |
getLoadedUrlsList()
The canonical URLs of all source files loaded during the compilation.
|
String |
getSourceMap()
The JSON-encoded source map, or the empty string if
`CompileRequest.source_map` was `false`.
|
ByteString |
getSourceMapBytes()
The JSON-encoded source map, or the empty string if
`CompileRequest.source_map` was `false`.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
isInitialized
String getCss()
The compiled CSS.
string css = 1;
ByteString getCssBytes()
The compiled CSS.
string css = 1;
String getSourceMap()
The JSON-encoded source map, or the empty string if `CompileRequest.source_map` was `false`. The compiler must not add a `"file"` key to this source map. It's the host's (or the host's user's) responsibility to determine how the generated CSS can be reached from the source map.
string source_map = 2;
ByteString getSourceMapBytes()
The JSON-encoded source map, or the empty string if `CompileRequest.source_map` was `false`. The compiler must not add a `"file"` key to this source map. It's the host's (or the host's user's) responsibility to determine how the generated CSS can be reached from the source map.
string source_map = 2;
List<String> getLoadedUrlsList()
The canonical URLs of all source files loaded during the compilation. The compiler must ensure that each canonical URL appears only once in this list. This must include the entrypoint file's URL if either `CompileRequest.input.path` or `CompileRequest.StringInput.url` was passed.
repeated string loaded_urls = 3;
int getLoadedUrlsCount()
The canonical URLs of all source files loaded during the compilation. The compiler must ensure that each canonical URL appears only once in this list. This must include the entrypoint file's URL if either `CompileRequest.input.path` or `CompileRequest.StringInput.url` was passed.
repeated string loaded_urls = 3;
String getLoadedUrls(int index)
The canonical URLs of all source files loaded during the compilation. The compiler must ensure that each canonical URL appears only once in this list. This must include the entrypoint file's URL if either `CompileRequest.input.path` or `CompileRequest.StringInput.url` was passed.
repeated string loaded_urls = 3;
index
- The index of the element to return.ByteString getLoadedUrlsBytes(int index)
The canonical URLs of all source files loaded during the compilation. The compiler must ensure that each canonical URL appears only once in this list. This must include the entrypoint file's URL if either `CompileRequest.input.path` or `CompileRequest.StringInput.url` was passed.
repeated string loaded_urls = 3;
index
- The index of the value to return.