You are here

private property SassParser::$property_syntax in Sassy 7

Same name and namespace in other branches
  1. 7.3 phpsass/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

phamlp/sass/SassParser.php, line 184

Class

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

Code

private $property_syntax;