Skip to content

Commit

Permalink
Add TODOs for remaining stubbed out functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
JordonPhillips committed Mar 13, 2020
1 parent 270b5e1 commit f557fdf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ final class GoDelegator {
}

/**
* Writes all pending writers do disk and then clears them out.
* Writes all pending writers to disk and then clears them out.
*/
void flushWriters() {
writers.forEach((filename, writer) -> fileManifest.writeFile(filename, writer.toString()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,16 +183,19 @@ public Symbol bigDecimalShape(BigDecimalShape shape) {

@Override
public Symbol operationShape(OperationShape shape) {
// TODO: implement operations
return createSymbolBuilder(shape, "nil").build();
}

@Override
public Symbol resourceShape(ResourceShape shape) {
// TODO: implement resources
return createSymbolBuilder(shape, "nil").build();
}

@Override
public Symbol serviceShape(ServiceShape shape) {
// TODO: implement clients
return createSymbolBuilder(shape, "nil").build();
}

Expand All @@ -212,6 +215,7 @@ public Symbol structureShape(StructureShape shape) {

@Override
public Symbol unionShape(UnionShape shape) {
// TODO: implement unions
return createSymbolBuilder(shape, "nil").build();
}

Expand Down

0 comments on commit f557fdf

Please sign in to comment.