File tree Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -193,17 +193,17 @@ jobs:
193
193
# fail-fast: false
194
194
matrix :
195
195
config :
196
- - {build: shared, platform: x64, cflags: '-g -fsanitize=address' }
197
- - {build: static, platform: x64, cflags: '-g -fsanitize=address' }
198
- - {build: shared, platform: x86, cflags: '-g -fsanitize=address' }
199
- - {build: static, platform: x86, cflags: '-g -fsanitize=address' }
196
+ - {build: shared, platform: x64}
197
+ - {build: static, platform: x64}
198
+ - {build: shared, platform: x86}
199
+ - {build: static, platform: x86}
200
200
201
201
env :
202
202
ASAN_OPTIONS : ${{ matrix.config.asan }}
203
203
EXTRA_CFLAGS : ${{ matrix.config.cflags }}
204
204
EXTRA_CXXFLAGS : ${{ matrix.config.cflags }}
205
- SASS_LIBSASS_PATH : libsass
206
- COVERAGE : no
205
+ # SASS_LIBSASS_PATH: libsass
206
+ # COVERAGE: no
207
207
208
208
steps :
209
209
- name : Change git config to preserve line-endings
Original file line number Diff line number Diff line change @@ -674,12 +674,15 @@ namespace Sass {
674
674
error (" Expected " + name + " ." ,
675
675
scanner.rawSpanFrom (start));
676
676
}
677
+ // EO expectIdentifier
677
678
678
- // Throws an error associated with [pstate].
679
- void Parser::error (sass::string message, SourceSpan pstate) {
679
+ // Throws a parser error associated with [pstate].
680
+ void Parser::error (sass::string message, SourceSpan pstate)
681
+ {
680
682
callStackFrame frame (compiler, BackTrace (pstate));
681
683
throw Exception::ParserException (compiler, message);
682
684
}
685
+ // EO error
683
686
684
687
// ///////////////////////////////////////////////////////////////////////
685
688
// ///////////////////////////////////////////////////////////////////////
You can’t perform that action at this time.
0 commit comments