You are here

private property SassParser::$property_syntax in Sassy 7.3

Same name and namespace in other branches
  1. 7 phamlp/sass/SassParser.php \SassParser::property_syntax

property_syntax: properties. If the correct syntax isn't used, an error is thrown. Value can be: + new - forces the use of a colon or equals sign after the property name. For example color: #0f3 or width: $main_width. + old - forces the use of a colon before the property name. For example: :color #0f3 or :width = $main_width.

By default, either syntax is valid.

Ignored for SCSS files which alaways use the new style.

Type: string Forces the document to use one syntax for

File

phpsass/SassParser.php, line 193

Class

SassParser
SassParser class. Parses {@link http://sass-lang.com/ .sass and .sccs} files. @package PHamlP @subpackage Sass

Code

private $property_syntax;