You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The MultiSpan introduced in Sass 1.54.0 does not provide access to the properties documented for SourceSpan. Although it looks like the properties should be accessible (I can only take a guess here because I don't know Dart), they are undefined in the JavaScript API.
Minimal Node.js code for reproducing the problem (tested with latest Sass version, 1.54.5):
letsass=require('sass')sass.compileString(`* > { --foo: bar }`,{logger: {warn(_message,{ span }){// `span.start` should yield a `SourceLocation` according to documentation, gets `undefined` insteadconsole.log(span.start)}}})
The text was updated successfully, but these errors were encountered:
The
MultiSpan
introduced in Sass 1.54.0 does not provide access to the properties documented forSourceSpan
. Although it looks like the properties should be accessible (I can only take a guess here because I don't know Dart), they areundefined
in the JavaScript API.Minimal Node.js code for reproducing the problem (tested with latest Sass version, 1.54.5):
The text was updated successfully, but these errors were encountered: