コード例 #1
0
        public static StatementSyntax Transpile(this Syntax.DebugStatementSyntax debugStatementNode)
        {
            _ = debugStatementNode ?? throw new ArgumentNullException(nameof(debugStatementNode));

            // TODO: implement
            return(SyntaxFactory.EmptyStatement());
        }
コード例 #2
0
        public static void Transpile(this Syntax.DebugStatementSyntax debugStatementNode, ref StringBuilder sb)
        {
            _ = debugStatementNode ?? throw new ArgumentNullException(nameof(debugStatementNode));

            // TODO: implement
        }