(node *ast.Node, nodeStartLine int, indentation int, delta int)
| 1241 | } |
| 1242 | |
| 1243 | func (w *formatSpanWorker) getDynamicIndentation(node *ast.Node, nodeStartLine int, indentation int, delta int) *dynamicIndenter { |
| 1244 | return &dynamicIndenter{ |
| 1245 | node: node, |
| 1246 | nodeStartLine: nodeStartLine, |
| 1247 | indentation: indentation, |
| 1248 | delta: delta, |
| 1249 | options: w.formattingContext.Options, |
| 1250 | sourceFile: w.sourceFile, |
| 1251 | } |
| 1252 | } |
no outgoing calls
no test coverage detected