|
5 | 5 |
|
6 | 6 | // mapnik
|
7 | 7 | #include <mapnik/attribute_descriptor.hpp> // for attribute_descriptor
|
8 |
| -#include <mapnik/geometry/box2d.hpp> // for box2d |
9 |
| -#include <mapnik/datasource.hpp> // for datasource, datasource_ptr, etc |
10 |
| -#include <mapnik/datasource_cache.hpp> // for datasource_cache |
11 |
| -#include <mapnik/feature_layer_desc.hpp> // for layer_descriptor |
12 |
| -#include <mapnik/params.hpp> // for parameters |
13 |
| -#include <mapnik/query.hpp> // for query |
| 8 | +#include <mapnik/geometry/box2d.hpp> // for box2d |
| 9 | +#include <mapnik/datasource.hpp> // for datasource, datasource_ptr, etc |
| 10 | +#include <mapnik/datasource_cache.hpp> // for datasource_cache |
| 11 | +#include <mapnik/feature_layer_desc.hpp> // for layer_descriptor |
| 12 | +#include <mapnik/params.hpp> // for parameters |
| 13 | +#include <mapnik/query.hpp> // for query |
14 | 14 |
|
15 | 15 | // stl
|
16 | 16 | #include <exception>
|
@@ -134,10 +134,10 @@ Napi::Value Datasource::extent(Napi::CallbackInfo const& info)
|
134 | 134 | // where a plugin dynamically calculated extent such as
|
135 | 135 | // postgis plugin. Therefore this makes this difficult
|
136 | 136 | // to add to testing. Therefore marking it with exclusion
|
137 |
| - /* LCOV_EXCL_START */ |
| 137 | + // LCOV_EXCL_START |
138 | 138 | Napi::Error::New(env, ex.what()).ThrowAsJavaScriptException();
|
139 | 139 | return env.Undefined();
|
140 |
| - /* LCOV_EXCL_STOP */ |
| 140 | + // LCOV_EXCL_STOP |
141 | 141 | }
|
142 | 142 |
|
143 | 143 | Napi::Array arr = Napi::Array::New(env, 4);
|
@@ -172,10 +172,10 @@ Napi::Value Datasource::describe(Napi::CallbackInfo const& info)
|
172 | 172 | // where a plugin dynamically calculated extent such as
|
173 | 173 | // postgis plugin. Therefore this makes this difficult
|
174 | 174 | // to add to testing. Therefore marking it with exclusion
|
175 |
| - /* LCOV_EXCL_START */ |
| 175 | + // LCOV_EXCL_START |
176 | 176 | Napi::Error::New(env, ex.what()).ThrowAsJavaScriptException();
|
177 | 177 | return env.Undefined();
|
178 |
| - /* LCOV_EXCL_STOP */ |
| 178 | + // LCOV_EXCL_STOP |
179 | 179 | }
|
180 | 180 | return scope.Escape(description);
|
181 | 181 | }
|
|
0 commit comments