pike.git/
module.pmod.in
Branch:
Tag:
Non-build tags
All tags
No tags
2016-12-01
2016-12-01 15:17:20 by Pontus Östlund <ponost@roxen.com>
e1370d5d390976b0d1c958f77fdf3692473db544 (
25
lines) (+
16
/-
9
)
[
Show
|
Annotate
]
Branch:
a0a72102eb40aa12bb83f9fefecf66f38765b01b
Autodoc fixes. The __Sass module is now virtually mapped to Tools.Sass.
10:
#pike __REAL_VERSION__ #require constant(Tools@module@)
+
//! @ignore
inherit Tools@module@;
-
+
//! @endignore
//! SCSS compiler //!
38:
//! @member int "output_style" //! Any of the @[STYLE_NESTED], @[STYLE_EXPANDED], @[STYLE_COMPACT] //! or @[STYLE_COMPRESSED] constants. See also @[set_output_style()].
+
//!
//! @member string "include_path" //! Path to root of incude files. See also @[set_include_path()].
-
+
//!
//! @member string "source_map_file" //! File to write source map file to. Only has effect in @[compile_file()]. //! See also @[set_source_map_file()].
-
+
//!
//! @member bool "source_comments" //! Turn on/off comments in the output containing info about the source //! file - line numbers and such. Default of @tt{false@}. See also //! @[set_source_comments()].
-
+
//!
//! @member bool "source_map_embed" //! Turn on/off if a source map should be embedded in the output or not. //! Default is @tt{false@}. See also @[set_source_map_embed()].
-
+
//!
+
//! @member string "source_map_root"
+
//! Set the root path of the source files, relative to where the
+
//! source.map file is written.
+
//! See also @[set_source_map_root()]
+
//!
+
//! @member bool "omit_source_map"
+
//! Omit the #sourceMappingURL or not.
+
//! See also @[set_omit_source_map_url()]
//! @endmapping void set_options(mapping(string:string|int) opts) {
110:
} } }
-
-
// //! Test if @[set_options()] will be linked to from @[a]?
-
// //!
-
// //! @param a
-
// //! Just a parameter
-
// void test_func(mapping a)
-
// {
-
// return a;
-
// }
+
}