@@ -212,7 +212,7 @@ namespace Sass {
212
212
// ///////////////////////////////////////////////////////////////////////
213
213
// ///////////////////////////////////////////////////////////////////////
214
214
215
- Directive::Directive (ParserState pstate, sass::string kwd, SelectorListObj sel, Block_Obj b, Expression_Obj val)
215
+ Directive::Directive (ParserState pstate, sass::string kwd, SelectorListObj sel, Block_Obj b, ExpressionObj val)
216
216
: ParentStatement(pstate, b), keyword_(kwd), selector_(sel), value_(val) // set value manually if needed
217
217
{ statement_type (DIRECTIVE); }
218
218
Directive::Directive (const Directive* ptr)
@@ -250,7 +250,7 @@ namespace Sass {
250
250
// ///////////////////////////////////////////////////////////////////////
251
251
// ///////////////////////////////////////////////////////////////////////
252
252
253
- Declaration::Declaration (ParserState pstate, String_Obj prop, Expression_Obj val, bool i, bool c, Block_Obj b)
253
+ Declaration::Declaration (ParserState pstate, String_Obj prop, ExpressionObj val, bool i, bool c, Block_Obj b)
254
254
: ParentStatement(pstate, b), property_(prop), value_(val), is_important_(i), is_custom_property_(c), is_indented_(false )
255
255
{ statement_type (DECLARATION); }
256
256
Declaration::Declaration (const Declaration* ptr)
@@ -271,7 +271,7 @@ namespace Sass {
271
271
// ///////////////////////////////////////////////////////////////////////
272
272
// ///////////////////////////////////////////////////////////////////////
273
273
274
- Assignment::Assignment (ParserState pstate, sass::string var, Expression_Obj val, bool is_default, bool is_global)
274
+ Assignment::Assignment (ParserState pstate, sass::string var, ExpressionObj val, bool is_default, bool is_global)
275
275
: Statement(pstate), variable_(var), value_(val), is_default_(is_default), is_global_(is_global)
276
276
{ statement_type (ASSIGNMENT); }
277
277
Assignment::Assignment (const Assignment* ptr)
@@ -287,7 +287,7 @@ namespace Sass {
287
287
288
288
Import::Import (ParserState pstate)
289
289
: Statement(pstate),
290
- urls_(sass::vector<Expression_Obj >()),
290
+ urls_(sass::vector<ExpressionObj >()),
291
291
incs_(sass::vector<Include>()),
292
292
import_queries_()
293
293
{ statement_type (IMPORT); }
@@ -299,7 +299,7 @@ namespace Sass {
299
299
{ statement_type (IMPORT); }
300
300
301
301
sass::vector<Include>& Import::incs () { return incs_; }
302
- sass::vector<Expression_Obj >& Import::urls () { return urls_; }
302
+ sass::vector<ExpressionObj >& Import::urls () { return urls_; }
303
303
304
304
// ///////////////////////////////////////////////////////////////////////
305
305
// ///////////////////////////////////////////////////////////////////////
@@ -317,7 +317,7 @@ namespace Sass {
317
317
// ///////////////////////////////////////////////////////////////////////
318
318
// ///////////////////////////////////////////////////////////////////////
319
319
320
- WarningRule::WarningRule (ParserState pstate, Expression_Obj msg)
320
+ WarningRule::WarningRule (ParserState pstate, ExpressionObj msg)
321
321
: Statement(pstate), message_(msg)
322
322
{ statement_type (WARNING); }
323
323
WarningRule::WarningRule (const WarningRule* ptr)
@@ -327,7 +327,7 @@ namespace Sass {
327
327
// ///////////////////////////////////////////////////////////////////////
328
328
// ///////////////////////////////////////////////////////////////////////
329
329
330
- ErrorRule::ErrorRule (ParserState pstate, Expression_Obj msg)
330
+ ErrorRule::ErrorRule (ParserState pstate, ExpressionObj msg)
331
331
: Statement(pstate), message_(msg)
332
332
{ statement_type (ERROR); }
333
333
ErrorRule::ErrorRule (const ErrorRule* ptr)
@@ -337,7 +337,7 @@ namespace Sass {
337
337
// ///////////////////////////////////////////////////////////////////////
338
338
// ///////////////////////////////////////////////////////////////////////
339
339
340
- DebugRule::DebugRule (ParserState pstate, Expression_Obj val)
340
+ DebugRule::DebugRule (ParserState pstate, ExpressionObj val)
341
341
: Statement(pstate), value_(val)
342
342
{ statement_type (DEBUGSTMT); }
343
343
DebugRule::DebugRule (const DebugRule* ptr)
@@ -364,7 +364,7 @@ namespace Sass {
364
364
// ///////////////////////////////////////////////////////////////////////
365
365
// ///////////////////////////////////////////////////////////////////////
366
366
367
- If::If (ParserState pstate, Expression_Obj pred, Block_Obj con, Block_Obj alt)
367
+ If::If (ParserState pstate, ExpressionObj pred, Block_Obj con, Block_Obj alt)
368
368
: ParentStatement(pstate, con), predicate_(pred), alternative_(alt)
369
369
{ statement_type (IF); }
370
370
If::If (const If* ptr)
@@ -382,7 +382,7 @@ namespace Sass {
382
382
// ///////////////////////////////////////////////////////////////////////
383
383
384
384
ForRule::ForRule (ParserState pstate,
385
- sass::string var, Expression_Obj lo, Expression_Obj hi, Block_Obj b, bool inc)
385
+ sass::string var, ExpressionObj lo, ExpressionObj hi, Block_Obj b, bool inc)
386
386
: ParentStatement(pstate, b),
387
387
variable_(var), lower_bound_(lo), upper_bound_(hi), is_inclusive_(inc)
388
388
{ statement_type (FOR); }
@@ -397,7 +397,7 @@ namespace Sass {
397
397
// ///////////////////////////////////////////////////////////////////////
398
398
// ///////////////////////////////////////////////////////////////////////
399
399
400
- EachRule::EachRule (ParserState pstate, sass::vector<sass::string> vars, Expression_Obj lst, Block_Obj b)
400
+ EachRule::EachRule (ParserState pstate, sass::vector<sass::string> vars, ExpressionObj lst, Block_Obj b)
401
401
: ParentStatement(pstate, b), variables_(vars), list_(lst)
402
402
{ statement_type (EACH); }
403
403
EachRule::EachRule (const EachRule* ptr)
@@ -407,7 +407,7 @@ namespace Sass {
407
407
// ///////////////////////////////////////////////////////////////////////
408
408
// ///////////////////////////////////////////////////////////////////////
409
409
410
- WhileRule::WhileRule (ParserState pstate, Expression_Obj pred, Block_Obj b)
410
+ WhileRule::WhileRule (ParserState pstate, ExpressionObj pred, Block_Obj b)
411
411
: ParentStatement(pstate, b), predicate_(pred)
412
412
{ statement_type (WHILE); }
413
413
WhileRule::WhileRule (const WhileRule* ptr)
@@ -417,7 +417,7 @@ namespace Sass {
417
417
// ///////////////////////////////////////////////////////////////////////
418
418
// ///////////////////////////////////////////////////////////////////////
419
419
420
- Return::Return (ParserState pstate, Expression_Obj val)
420
+ Return::Return (ParserState pstate, ExpressionObj val)
421
421
: Statement(pstate), value_(val)
422
422
{ statement_type (RETURN); }
423
423
Return::Return (const Return* ptr)
@@ -557,7 +557,7 @@ namespace Sass {
557
557
// ///////////////////////////////////////////////////////////////////////
558
558
// ///////////////////////////////////////////////////////////////////////
559
559
560
- Unary_Expression::Unary_Expression (ParserState pstate, Type t, Expression_Obj o)
560
+ Unary_Expression::Unary_Expression (ParserState pstate, Type t, ExpressionObj o)
561
561
: Expression(pstate), optype_(t), operand_(o), hash_(0 )
562
562
{ }
563
563
Unary_Expression::Unary_Expression (const Unary_Expression* ptr)
@@ -602,7 +602,7 @@ namespace Sass {
602
602
// ///////////////////////////////////////////////////////////////////////
603
603
// ///////////////////////////////////////////////////////////////////////
604
604
605
- Argument::Argument (ParserState pstate, Expression_Obj val, sass::string n, bool rest, bool keyword)
605
+ Argument::Argument (ParserState pstate, ExpressionObj val, sass::string n, bool rest, bool keyword)
606
606
: Expression(pstate), value_(val), name_(n), is_rest_argument_(rest), is_keyword_argument_(keyword), hash_(0 )
607
607
{
608
608
if (!name_.empty () && is_rest_argument_) {
@@ -739,12 +739,12 @@ namespace Sass {
739
739
// ///////////////////////////////////////////////////////////////////////
740
740
741
741
Media_Query::Media_Query (ParserState pstate, String_Obj t, size_t s, bool n, bool r)
742
- : Expression(pstate), Vectorized<Media_Query_Expression_Obj >(s),
742
+ : Expression(pstate), Vectorized<Media_Query_ExpressionObj >(s),
743
743
media_type_(t), is_negated_(n), is_restricted_(r)
744
744
{ }
745
745
Media_Query::Media_Query (const Media_Query* ptr)
746
746
: Expression(ptr),
747
- Vectorized<Media_Query_Expression_Obj >(*ptr),
747
+ Vectorized<Media_Query_ExpressionObj >(*ptr),
748
748
media_type_(ptr->media_type_),
749
749
is_negated_(ptr->is_negated_),
750
750
is_restricted_(ptr->is_restricted_)
@@ -754,7 +754,7 @@ namespace Sass {
754
754
// ///////////////////////////////////////////////////////////////////////
755
755
756
756
Media_Query_Expression::Media_Query_Expression (ParserState pstate,
757
- Expression_Obj f, Expression_Obj v, bool i)
757
+ ExpressionObj f, ExpressionObj v, bool i)
758
758
: Expression(pstate), feature_(f), value_(v), is_interpolated_(i)
759
759
{ }
760
760
Media_Query_Expression::Media_Query_Expression (const Media_Query_Expression* ptr)
@@ -767,7 +767,7 @@ namespace Sass {
767
767
// ///////////////////////////////////////////////////////////////////////
768
768
// ///////////////////////////////////////////////////////////////////////
769
769
770
- At_Root_Query::At_Root_Query (ParserState pstate, Expression_Obj f, Expression_Obj v, bool i)
770
+ At_Root_Query::At_Root_Query (ParserState pstate, ExpressionObj f, ExpressionObj v, bool i)
771
771
: Expression(pstate), feature_(f), value_(v)
772
772
{ }
773
773
At_Root_Query::At_Root_Query (const At_Root_Query* ptr)
@@ -855,7 +855,7 @@ namespace Sass {
855
855
// ///////////////////////////////////////////////////////////////////////
856
856
// ///////////////////////////////////////////////////////////////////////
857
857
858
- Parameter::Parameter (ParserState pstate, sass::string n, Expression_Obj def, bool rest)
858
+ Parameter::Parameter (ParserState pstate, sass::string n, ExpressionObj def, bool rest)
859
859
: AST_Node(pstate), name_(n), default_value_(def), is_rest_parameter_(rest)
860
860
{ }
861
861
Parameter::Parameter (const Parameter* ptr)
0 commit comments