* indent using a number of spaces per indentation. * * @param length number of spaces per indent. */
| 429 | * @param length number of spaces per indent. |
| 430 | */ |
| 431 | void ASBeautifier::setSpaceIndentation(int length) |
| 432 | { |
| 433 | indentString = string(length, ' '); |
| 434 | indentLength = length; |
| 435 | } |
| 436 | |
| 437 | /** |
| 438 | * set the maximum indentation between two lines in a multi-line statement. |